PyDuino: Difference between revisions
m (→Current Status) |
No edit summary |
||
Line 1: | Line 1: | ||
=Arduino= |
== What is the Arduino? == |
||
"Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments." |
"Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments." |
||
The Arduino also happens to be a rocking AVR(atmega8/168) developer's kit, with a boot-loader, excellent documentation, and tons of libraries. |
The Arduino also happens to be a rocking AVR(atmega8/168) developer's kit, with a boot-loader, excellent documentation, and tons of libraries. |
||
=Current |
== Current status == |
||
[[User:DyD|Ian Daniher]] has edited a pre-existing makefile into a shell script (to upload a .hex file to the Arduino) and a makefile to compile arduino source files (.pde) into .hex files. |
[[User:DyD|Ian Daniher]] has edited a pre-existing makefile into a shell script (to upload a .hex file to the Arduino) and a makefile to compile arduino source files (.pde) into .hex files. |
||
Line 12: | Line 12: | ||
Both of these files can be used together to completely eliminate the necessity of the Java Runtime Environment, a clunky and unnecessary piece of software, from the Arduino platform. |
Both of these files can be used together to completely eliminate the necessity of the Java Runtime Environment, a clunky and unnecessary piece of software, from the Arduino platform. |
||
=Wish |
== Wish list == |
||
In order to completely do this though, a pyGTK interface could be successfully implemented, allowing for the use of a traditional CLI editor such as nano, a custom interface implementing the popular drag-n-drop code bricks, or a slim integrated development environment with code libraries and documentation at easy reference. |
In order to completely do this though, a pyGTK interface could be successfully implemented, allowing for the use of a traditional CLI editor such as nano, a custom interface implementing the popular drag-n-drop code bricks, or a slim integrated development environment with code libraries and documentation at easy reference. |
||
Line 19: | Line 19: | ||
A means of creating an easy gui to the above serial interface, especially graphing and buttons, would be nice as well. |
A means of creating an easy gui to the above serial interface, especially graphing and buttons, would be nice as well. |
||
[[Category:Peripheral]] |
|||
[[Category:Hardware]] |
|||
[[Category:Software]] |
Revision as of 01:16, 25 August 2008
What is the Arduino?
"Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments."
The Arduino also happens to be a rocking AVR(atmega8/168) developer's kit, with a boot-loader, excellent documentation, and tons of libraries.
Current status
Ian Daniher has edited a pre-existing makefile into a shell script (to upload a .hex file to the Arduino) and a makefile to compile arduino source files (.pde) into .hex files.
The shell script can also be used to upload .hex files made using the traditional build environment(avr-gcc), allowing for use of proper C code and non-Arduino libraries with this affordable and expandable development kit.
Both of these files can be used together to completely eliminate the necessity of the Java Runtime Environment, a clunky and unnecessary piece of software, from the Arduino platform.
Wish list
In order to completely do this though, a pyGTK interface could be successfully implemented, allowing for the use of a traditional CLI editor such as nano, a custom interface implementing the popular drag-n-drop code bricks, or a slim integrated development environment with code libraries and documentation at easy reference.
A serial interface providing datalogging, graphics, and a full serial console would be almost essential.
A means of creating an easy gui to the above serial interface, especially graphing and buttons, would be nice as well.