Advertisement
Guest User

Untitled

a guest
Aug 24th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. //In order to connect,
  2.  
  3. SoftwareSerial esp8266(2,3);
  4.  
  5. // the TX pin of esp8266 is connected to pin 3 of
  6. // arduino uno and RX pin is connected to 2
  7. // we need to pass baud rate to begin function
  8.  
  9. void setup()
  10. {
  11. Serial.begin(115200);
  12. esp8266.begin(???); // what should i do in order to make it work?
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement