mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Revert adding spaces
This commit is contained in:
parent
72fcf2cbe1
commit
282d9e138c
1 changed files with 2 additions and 2 deletions
|
@ -339,8 +339,8 @@ void Tuya::handle_datapoints_(const uint8_t *buffer, size_t len) {
|
|||
}
|
||||
|
||||
void Tuya::send_raw_command_(TuyaCommand command) {
|
||||
uint8_t len_hi = (uint8_t) (command.payload.size() >> 8);
|
||||
uint8_t len_lo = (uint8_t) (command.payload.size() & 0xFF);
|
||||
uint8_t len_hi = (uint8_t)(command.payload.size() >> 8);
|
||||
uint8_t len_lo = (uint8_t)(command.payload.size() & 0xFF);
|
||||
uint8_t version = 0;
|
||||
|
||||
this->last_command_timestamp_ = millis();
|
||||
|
|
Loading…
Reference in a new issue