mirror of
https://github.com/esphome/esphome.git
synced 2025-09-26 23:22:21 +01:00
Initial bluetooth_proxy support (#3736)
This commit is contained in:
@@ -70,7 +70,7 @@ class ProtoVarInt {
|
||||
}
|
||||
}
|
||||
void encode(std::vector<uint8_t> &out) {
|
||||
uint32_t val = this->value_;
|
||||
uint64_t val = this->value_;
|
||||
if (val <= 0x7F) {
|
||||
out.push_back(val);
|
||||
return;
|
||||
|
Reference in New Issue
Block a user