Electronic – arduino – How to develop software for the Arduino

arduinomspprogrammingsoftware

Is the main way of programming the Arduino's Atmel MCU thru a Visual Programming environment such as Max/MSP? Or do you have to write typical C code?

What are the different ways available?

Best Answer

The main way of programming the atmel chips is using avrstudio a windows IDE or avr-gcc. In C or assembly.

The arduino simplifies this to use a simple variation of c++ in its own simple IDE. There is no visual programming method for arduino/avrs as far as I know.