Advertisement
Guest User

2

a guest
May 20th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include <SoftwareSerial.h>
  2.  
  3. SoftwareSerial mySerial(10, 11);
  4.  
  5. void setup() {
  6. mySerial.begin(9600); // Default communication rate of the Bluetooth module
  7. }
  8. void loop() {
  9. mySerial.print("Hello \n");
  10. delay(1000);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement