Running PYTHON (pymite-09) on an Arduino MEGA 2560 using atmega16 micrcontroller

Now it is the first time I am using an arduino board. Arduino mega 2560 is really a great product. The chip got a flash of 256KB, RAM of 8KB and EEPROM of 4KB. Also, the data sheet of Atmega2560 says that we can extend the RAM (by external) upto 64KB. Another most important feature of this stuff is that it have 54 Digital I/O pins (of which 14 provide PWM output). It is clocked with a 16MHz crystal osc.



Also the board contains another atmega16 (just above the crystal) which is pre-programmed as a USB to UART converter which enables a serial communitation between the atmega2560 and  PC via USB. The product is shipped with a bootloader inside which make it easy to program it via the same USB-UART channel. So the channel got two functions, ie programming the chip and serial communication with PC. From the arduino home page we can download the arduino IDE for appropriate OS.

      I heard arduino makes people lazy. But now I understood it is true. Because it is so easy to program an arduino using the arduino IDE. It have an arduino language (it is c++) with a great library functions those are very much user friendly and I heard people saying, “if it is arduino, any one can program it”. Now I believe statement is almost right because in arduino IDE, we doesn’t need to know any thing about the processor, it’s registers and even its real port address also. Every thing is grouped and numbered in the board not according to the real PORTA, PORTB etc but according to it’s functioning like PWM, ANALOG, DIGITAL, COMMUNICATION etc.
The arduino IDE got a lot of working examples, what we need to do is, we need to select the board first and then set the serial port and later we can open any example and then simply press ‘upload’. It is ready!!!
So no need to explain it more because it is so simple.
For more detail, Click here...

No comments:

Post a Comment