how arduino receive data from pc?
the pc will send two data,how can i separate it,that the arduino will store those data in differnt variable?
pls..help me!!
The simplest way I guess is using the built in serial functionality. Have a look at the examples and tutorials that are accessible through the IDE.
The dimmer example also has some code for processing in comments ( PC side code ).
From the IDE use 'Open->Communication->Dimmer'
What are the differences between the 4 drop down menu options at the bottom of the Serial monitor.
No line ending
Newline
Carriage return
NL/CR
infinite4566:
What are the differences between the 4 drop down menu options at the bottom of the Serial monitor.
Those are the "characters" added when you click the send button.
When you click the "Send" button that controls what gets appended after whatever you type in the box. Typically you want newline so that the Arduino can tell when the text ends (that is, if you program it to do so).
Ninja'd by 20 seconds!