mirror of
https://github.com/esphome/esphome.git
synced 2024-11-25 16:38:16 +01:00
Add files via upload
This commit is contained in:
parent
d62e1a4c6e
commit
908500d35f
2 changed files with 3 additions and 3 deletions
|
@ -75,7 +75,6 @@ optional<ParseResult> ATCMiThermometer::parse_header(const esp32_ble_tracker::Se
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ATCMiThermometer::parse_message(const std::vector<uint8_t> &message, ParseResult &result) {
|
bool ATCMiThermometer::parse_message(const std::vector<uint8_t> &message, ParseResult &result) {
|
||||||
|
|
||||||
// Byte 0-5 mac in correct order
|
// Byte 0-5 mac in correct order
|
||||||
// Byte 6-7 Temperature in uint16
|
// Byte 6-7 Temperature in uint16
|
||||||
// Byte 8 Humidity in percent
|
// Byte 8 Humidity in percent
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
import esphome.codegen as cg
|
import esphome.codegen as cg
|
||||||
import esphome.config_validation as cv
|
import esphome.config_validation as cv
|
||||||
from esphome.components import sensor, esp32_ble_tracker
|
from esphome.components import sensor, esp32_ble_tracker
|
||||||
from esphome.const import CONF_BATTERY_LEVEL, CONF_BATTERY_VOLTAGE, CONF_HUMIDITY, CONF_MAC_ADDRESS, CONF_TEMPERATURE, \
|
from esphome.const import CONF_BATTERY_LEVEL, CONF_BATTERY_VOLTAGE, CONF_MAC_ADDRESS, \
|
||||||
UNIT_CELSIUS, ICON_THERMOMETER, UNIT_PERCENT, ICON_WATER_PERCENT, UNIT_VOLT, ICON_BATTERY, CONF_ID
|
CONF_HUMIDITY, CONF_TEMPERATURE, CONF_ID, UNIT_CELSIUS, UNIT_PERCENT, UNIT_VOLT, \
|
||||||
|
ICON_BATTERY, ICON_THERMOMETER, ICON_WATER_PERCENT
|
||||||
|
|
||||||
DEPENDENCIES = ['esp32_ble_tracker']
|
DEPENDENCIES = ['esp32_ble_tracker']
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue