Advertisement
RuiViana

Higrometro

Feb 9th, 2016
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. #include <SoftwareSerial.h> // Inlcui a biblioteca SoftwareSerial.h
  2.  
  3. #define RxD 6 // Define RxD como 6
  4. #define TxD 7 // Define TxD como 7
  5. String DadosEnvia = "Teste Resultado"; // Variável char para armazenar o caractere recebido
  6. String DadosRecebe ;
  7.  
  8. SoftwareSerial Equipo(RxD,TxD); // Instância a biblioteca SoftwareSerial.h
  9. //------------------------------------------------
  10. void setup()
  11. {
  12. Serial.begin(9600);
  13. Equipo.begin(9600); // Configura o baud rate do equipamento como 9600
  14. }
  15. //------------------------------------------------
  16. void loop()
  17. {
  18. if(Equipo.available()) // Se algo for recebido pela serial do módulo bluetooth
  19. {
  20. DadosRecebe = Equipo.readStringUntil('\n');
  21. delay(10);
  22. Serial.println(DadosRecebe); // Imprime no Serial monitor em HEX
  23. delay(10); // Tempo de 10 mseg
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement