This commit is contained in:
James 2024-04-25 22:13:25 +01:00
parent a63382b36c
commit fcd2782c08

View File

@ -104,6 +104,7 @@ void loop() {
delay(500);
uint8_t a_data[7] = {0xdd, 0xa5, 3, 0x0, 0xff, 0xfd, 0x77};
pRemoteCharacteristic_tx->writeValue(a_data, sizeof(a_data), false);
delay(500);
}
// REQUEST CELL INFO
@ -113,6 +114,7 @@ void loop() {
delay(500);
uint8_t b_data[7] = {0xdd, 0xa5, 4, 0x0, 0xff, 0xfc, 0x77};
pRemoteCharacteristic_tx->writeValue(b_data, sizeof(b_data), false);
delay(500);
}
}
pClient->disconnect();