mirror of
https://github.com/esphome/esphome.git
synced 2024-11-24 16:08:10 +01:00
Update lora.cpp
This commit is contained in:
parent
bba562550e
commit
0744e7195b
1 changed files with 5 additions and 6 deletions
|
@ -126,8 +126,8 @@ void Lora::dump_config() {
|
|||
};
|
||||
void Lora::digital_write(uint8_t pin, bool value) {
|
||||
ESP_LOGD(TAG, "Starting to write message");
|
||||
// std::string message = str_snprintf("%02x%02x", 9, pin, value);
|
||||
this->sendMessage("bla");
|
||||
std::string message = str_snprintf("%02x%02x", 9, pin, value);
|
||||
this->sendMessage(message);
|
||||
}
|
||||
bool Lora::sendMessage(std::string message) {
|
||||
uint8_t size = message.length();
|
||||
|
@ -138,10 +138,9 @@ bool Lora::sendMessage(std::string message) {
|
|||
return false;
|
||||
}
|
||||
ESP_LOGD(TAG, "Sending: %s", message);
|
||||
// this->write_array((uint8_t *) &messageFixed, size);
|
||||
// bool result = this->waitCompleteResponse(5000, 5000);
|
||||
// return result;
|
||||
return true;
|
||||
this->write_array((uint8_t *) &messageFixed, size);
|
||||
bool result = this->waitCompleteResponse(5000, 5000);
|
||||
return result;
|
||||
}
|
||||
void Lora::loop() {
|
||||
if (!available()) {
|
||||
|
|
Loading…
Reference in a new issue