Revert adding spaces

This commit is contained in:
Jesse Hills 2022-05-17 23:31:55 +12:00
parent 72fcf2cbe1
commit 282d9e138c
No known key found for this signature in database
GPG key ID: BEAAE804EFD8E83A

View file

@ -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();