[RF69] Fixed incorrect comments

pull/13/head
jgromes 2018-10-04 21:04:58 +02:00
rodzic 98965ec553
commit 7bfaf3cb94
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -80,13 +80,13 @@ void loop() {
Serial.print(F("[RF69] Transmitting packet ... "));
// transmit C-string or Arduino string to node with address 0x02
//int state = rf.transmit("Hello World!", 0x02);
int state = rf.transmit("Hello World!", 0x02);
// transmit byte array to node with address 0x02
/*
byte byteArr[] = {0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF};
int state = rf.transmit(byteArr, 8, 0x02);
*/
// transmit C-string or Arduino string in broadcast mode
/*