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
- SoftwareSerial Equipo(RxD,TxD); // Instância a biblioteca SoftwareSerial.h
- char DadosRecebe[25] ;
- int i ; // Incremento
- //------------------------------------------------
- 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[i] = Equipo.read();
- delay(10);
- i++;
- }
- for (int k = 0; k <= i; k++)
- {
- Serial.println(DadosRecebe[k],HEX);
- }
- i = 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement