Serial deve dfunzionare cosi?
come mi avete fustigato mi sto sgobbando tutto, ma in questo software la frase hello world deve attivarsi quando io setto nel monitor seriale il baut rate 4800 ' si o no?
grazie anticipate
grazie anticipate
code: [select]
/*
software serial multple serial test
receives hardware serial, sends software serial.
receives software serial, sends hardware serial.
the circuit:
* rx digital pin 10 (connect tx of other device)
* tx digital pin 11 (connect rx of other device)
note:
not pins on mega , mega 2560 support change interrupts,
so following can used rx:
10, 11, 12, 13, 50, 51, 52, 53, 62, 63, 64, 65, 66, 67, 68, 69
not pins on leonardo , micro support change interrupts,
so following can used rx:
8, 9, 10, 11, 14 (miso), 15 (sck), 16 (mosi).
created in mists of time
modified 25 may 2012
by tom igoe
based on mikal hart's example
this example code in public domain.
*/
#include <softwareserial.h>
softwareserial myserial(10, 11); // rx, tx
void setup() {
// open serial communications , wait port open:
serial.begin(57600);
while (!serial) {
; // wait serial port connect. needed native usb port only
}
serial.println("goodnight moon!");
// set data rate softwareserial port
myserial.begin(4800);
myserial.println("hello, world?");
}
void loop() { // run on , over
if (myserial.available()) {
serial.write(myserial.read());
}
if (serial.available()) {
myserial.write(serial.read());
}
}
no, il pc non lo hai mica collegato sui pin 10 e 11.
ciao uwe
ciao uwe
Arduino Forum > International > Italiano > Software (Moderator: leo72) > Serial deve dfunzionare cosi?
arduino
Comments
Post a Comment