mirror of
https://github.com/esphome/esphome.git
synced 2024-11-04 09:01:53 +01:00
Clear UART read buffer before sending next command (#6200)
This commit is contained in:
parent
2948d87a66
commit
1f432ec7de
@ -336,6 +336,8 @@ void FingerprintGrowComponent::aura_led_control(uint8_t state, uint8_t speed, ui
|
||||
}
|
||||
|
||||
uint8_t FingerprintGrowComponent::send_command_() {
|
||||
while (this->available())
|
||||
this->read();
|
||||
this->write((uint8_t) (START_CODE >> 8));
|
||||
this->write((uint8_t) (START_CODE & 0xFF));
|
||||
this->write(this->address_[0]);
|
||||
|
Loading…
Reference in New Issue
Block a user