+ 15
What programming language can we use for arduino?
14 Antworten
+ 7
@Tom no Python
If you wanna use Python for physical computing dont buy Arduino but Microbit or Calliope or Adafruit Microcontroller.
Micropython (python with some special libraries) does the job.
+ 7
@Abdur One still has to use processing or c for working with Arduino.
The Tutorial shows how to communicate with a python program via serial interface.
This is possible with Python...
... and all languages providing a library for serial interfaces.
+ 6
processing
+ 5
python with arduino is possible
e.g. http://www.toptechboy.com/using-python-with-arduino-lessons/
many
+ 5
embedded c++
+ 3
processing also c
+ 3
question did not put restrictions
+ 3
@saxena officially inspired from processing
+ 3
c++ or python
+ 2
@Oma Falk Can be python used for it?
+ 2
@Oma Falk Thank you
+ 2
Oh nice, thanks!
+ 2
Embedded C programming
+ 1
only to point out few things as misconceptions got mixed up badly along the thread:
Processing sketches are written in java.
Arduino sketches are written in c++.
both ides look similar because Wiring/Arduino is ispired by the simplicity of Processing.
both platforms use libraries to make their sintax simplier than their native languages.
you CANNOT use java or python to program an Arduino.
you CAN interface any program so that it can communicate with an Arduino that is programmed in c++ to understand/use such communication protocol.