mirror of
https://github.com/esphome/esphome.git
synced 2024-10-31 08:25:53 +01:00
7c7032c59e
* Implement custom sensor platform
* Update
* Ethernet
* Lint
* Fix
* Login page
* Rename cookie secret
* Update manifest
* Update cookie check logic
* Favicon
* Fix
* Favicon manifest
* Fix
* Fix
* Fix
* Use hostname
* Message
* Temporary commit for screenshot
* Automatic board selection
* Undo temporary commit
* Update esphomeyaml-edge
* In-dashboard editing and hosting files locally
* Update esphomeyaml-edge
* Better ANSI color escaping
* Message
* Lint
* Download Efficiency
* Fix gitlab
* Fix
* Rename extra_libraries to libraries
* Add example
* Update README.md
* Update README.md
* Update README.md
* HassIO -> Hass.io
* Updates
* Add update available notice
* Update
* Fix substitutions
* Better error message
* Re-do dashboard ANSI colors
* Only include FastLED if user says so
* Autoscroll logs
* Remove old checks
* Use safer RedirectText
* Improvements
* Fix
* Use enviornment variable
* Use http://hassio/host/info
* Fix conditions
* Update platformio versions
* Revert "Use enviornment variable"
This reverts commit 7f038eb5d2
.
* Fix
* README update
* Temp
* Better invalid config messages
* Platformio debug
* Improve error messages
* Debug
* Remove debug
* Multi Conf
* Update
* Better paths
* Remove unused
* Fixes
* Lint
* lib_ignore
* Try fix platformio colors
* Fix dashboard scrolling
* Revert
* Lint
* Revert
86 lines
3.7 KiB
Python
86 lines
3.7 KiB
Python
import voluptuous as vol
|
|
|
|
from esphomeyaml.components import sensor
|
|
import esphomeyaml.config_validation as cv
|
|
from esphomeyaml.const import CONF_ADDRESS, CONF_IIR_FILTER, CONF_MAKE_ID, \
|
|
CONF_NAME, CONF_OVERSAMPLING, CONF_PRESSURE, CONF_TEMPERATURE, CONF_UPDATE_INTERVAL
|
|
from esphomeyaml.cpp_generator import add, variable
|
|
from esphomeyaml.cpp_helpers import setup_component
|
|
from esphomeyaml.cpp_types import App, Application
|
|
|
|
DEPENDENCIES = ['i2c']
|
|
|
|
BMP280Oversampling = sensor.sensor_ns.enum('BMP280Oversampling')
|
|
OVERSAMPLING_OPTIONS = {
|
|
'NONE': BMP280Oversampling.BMP280_OVERSAMPLING_NONE,
|
|
'1X': BMP280Oversampling.BMP280_OVERSAMPLING_1X,
|
|
'2X': BMP280Oversampling.BMP280_OVERSAMPLING_2X,
|
|
'4X': BMP280Oversampling.BMP280_OVERSAMPLING_4X,
|
|
'8X': BMP280Oversampling.BMP280_OVERSAMPLING_8X,
|
|
'16X': BMP280Oversampling.BMP280_OVERSAMPLING_16X,
|
|
}
|
|
|
|
BMP280IIRFilter = sensor.sensor_ns.enum('BMP280IIRFilter')
|
|
IIR_FILTER_OPTIONS = {
|
|
'OFF': BMP280IIRFilter.BMP280_IIR_FILTER_OFF,
|
|
'2X': BMP280IIRFilter.BMP280_IIR_FILTER_2X,
|
|
'4X': BMP280IIRFilter.BMP280_IIR_FILTER_4X,
|
|
'8X': BMP280IIRFilter.BMP280_IIR_FILTER_8X,
|
|
'16X': BMP280IIRFilter.BMP280_IIR_FILTER_16X,
|
|
}
|
|
|
|
BMP280_OVERSAMPLING_SENSOR_SCHEMA = sensor.SENSOR_SCHEMA.extend({
|
|
vol.Optional(CONF_OVERSAMPLING): cv.one_of(*OVERSAMPLING_OPTIONS, upper=True),
|
|
})
|
|
|
|
MakeBMP280Sensor = Application.struct('MakeBMP280Sensor')
|
|
BMP280TemperatureSensor = sensor.sensor_ns.class_('BMP280TemperatureSensor',
|
|
sensor.EmptyPollingParentSensor)
|
|
BMP280PressureSensor = sensor.sensor_ns.class_('BMP280PressureSensor',
|
|
sensor.EmptyPollingParentSensor)
|
|
|
|
PLATFORM_SCHEMA = sensor.PLATFORM_SCHEMA.extend({
|
|
cv.GenerateID(CONF_MAKE_ID): cv.declare_variable_id(MakeBMP280Sensor),
|
|
vol.Optional(CONF_ADDRESS, default=0x77): cv.i2c_address,
|
|
vol.Required(CONF_TEMPERATURE): cv.nameable(BMP280_OVERSAMPLING_SENSOR_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_variable_id(BMP280TemperatureSensor),
|
|
})),
|
|
vol.Required(CONF_PRESSURE): cv.nameable(BMP280_OVERSAMPLING_SENSOR_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_variable_id(BMP280PressureSensor),
|
|
})),
|
|
vol.Optional(CONF_IIR_FILTER): cv.one_of(*IIR_FILTER_OPTIONS, upper=True),
|
|
vol.Optional(CONF_UPDATE_INTERVAL): cv.update_interval,
|
|
}).extend(cv.COMPONENT_SCHEMA.schema)
|
|
|
|
|
|
def to_code(config):
|
|
rhs = App.make_bmp280_sensor(config[CONF_TEMPERATURE][CONF_NAME],
|
|
config[CONF_PRESSURE][CONF_NAME],
|
|
config[CONF_ADDRESS],
|
|
config.get(CONF_UPDATE_INTERVAL))
|
|
make = variable(config[CONF_MAKE_ID], rhs)
|
|
bmp280 = make.Pbmp280
|
|
if CONF_OVERSAMPLING in config[CONF_TEMPERATURE]:
|
|
constant = OVERSAMPLING_OPTIONS[config[CONF_TEMPERATURE][CONF_OVERSAMPLING]]
|
|
add(bmp280.set_temperature_oversampling(constant))
|
|
if CONF_OVERSAMPLING in config[CONF_PRESSURE]:
|
|
constant = OVERSAMPLING_OPTIONS[config[CONF_PRESSURE][CONF_OVERSAMPLING]]
|
|
add(bmp280.set_pressure_oversampling(constant))
|
|
if CONF_IIR_FILTER in config:
|
|
constant = IIR_FILTER_OPTIONS[config[CONF_IIR_FILTER]]
|
|
add(bmp280.set_iir_filter(constant))
|
|
|
|
sensor.setup_sensor(bmp280.Pget_temperature_sensor(), make.Pmqtt_temperature,
|
|
config[CONF_TEMPERATURE])
|
|
sensor.setup_sensor(bmp280.Pget_pressure_sensor(), make.Pmqtt_pressure,
|
|
config[CONF_PRESSURE])
|
|
setup_component(bmp280, config)
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_BMP280'
|
|
|
|
|
|
def to_hass_config(data, config):
|
|
return [sensor.core_to_hass_config(data, config[CONF_TEMPERATURE]),
|
|
sensor.core_to_hass_config(data, config[CONF_PRESSURE])]
|