View Single Post
  #1  
Old 02-03-2014, 09:13 PM
sunil.nair sunil.nair is offline
Member
 
Join Date: Aug 2013
Posts: 14
Serial communication with arduino uno

Hi,

Could you suggest me a way to send a character from vizard to arduino uno through serial communication using pyserial. In arduino i read it by:

void setup() {
Serial.begin(9600); // opens serial port, sets data rate to 9600 bps
}
void loop() {
if (Serial.available() > 0) {
Serial.print("I received: ");
}}
Reply With Quote