Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #include <SoftwareSerial.h>
  2. #define txD 6;
  3. #define rxD 7;
  4. SoftwareSerial blueToothSerial (rXD, txD); // :d :DD :=DD xĐĐ
  5.  
  6. void setup() {
  7. // put your setup code here, to run once:
  8.  
  9. }
  10.  
  11. void loop() {
  12. // put your main code here, to run repeatedly:
  13. Serial.begin(9600);
  14. blueToothSerial.begin(9600);
  15. pinMode(Rxd, INPUT);
  16. pinMode(Txd, INPUT); // XĐĐ xĐĐ lol
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement