Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <SoftwareSerial.h> // Inlcui a biblioteca SoftwareSerial.h
- #define RxD 6 // Define RxD como 6
- #define TxD 7 // Define TxD como 7
- // String DadosRecebe ;
- char DadosRecebe ;
- SoftwareSerial Equipo(RxD,TxD); // Instância a biblioteca SoftwareSerial.h
- //------------------------------------------------
- void setup()
- {
- Serial.begin(9600);
- Equipo.begin(9600); // Configura o baud rate do equipamento como 9600
- }
- //------------------------------------------------
- void loop()
- {
- if(Equipo.available()) // Se algo for recebido pela serial do módulo bluetooth
- {
- // DadosRecebe = Equipo.readStringUntil('\n');
- DadosRecebe = Equipo.read();
- delay(10);
- // Serial.println(DadosRecebe); // Imprime no Serial monitor em HEX
- Serial.println(DadosRecebe,HEX);
- delay(10); // Tempo de 10 mseg
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement