Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- byte comdata;
- void setup()
- {
- Serial.begin(9600);
- Serial.println("BLE Test");
- }
- void loop()
- {
- while (Serial.available() > 0)
- {
- comdata = Serial.read();
- delay(2);
- Serial.write(comdata);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement