rnauber
c13f132399
Add set_threshold and get_value methods to ESP32TouchBinarySensor. ( #631 )
...
* Add set_threshold and get_value methods to ESP32TouchBinarySensor and add a test.
* esp32_touch_binary_adaptive: fix formatting
* Remove superfluous static from testcase
* Revert "Remove superfluous static from testcase"
This reverts commit 5a6a111aa8
.
* Move into header file
* Update esp32_touch.h
Co-authored-by: olg <x>
Co-authored-by: Otto Winter <otto@otto-winter.com>
2019-06-16 19:14:13 +02:00
Andrew Thompson
db968bc6b0
Atmel M90E32AS Energy Metering IC. Found in CircuitSetup 2chan and 6chan energy meterss ( #629 )
...
* Atmel M90E32AS Energy Metering IC. Found in CircuitSetup 2can and 6chan energy meters
* fix style bugs
* Update esphome/components/atm90e32/atm90e32.cpp
Co-Authored-By: Otto Winter <otto@otto-winter.com>
* Properly put atm90e32_reg in namespace
* Use phase grouped config like ina3221
* Log why the component is marked failed, did not read back our register value
* 32bit register reads are 2s compliment
* Fix atm90e32 option name in test
* clang-format changes from travis-ci
* use new protected method names
* Whitespace changes to please Travis
* Update esphome/components/atm90e32/atm90e32.cpp
Co-Authored-By: Otto Winter <otto@otto-winter.com>
* Fix up type change for val_h/val_l
* Remove conditions around values with defaults
* Rename constants to match their value
* Remove 2's complement check
Co-authored-by: Andrew Thompson <andrew@whosonlocation.com>
Co-authored-by: Otto Winter <otto@otto-winter.com>
2019-06-16 12:00:15 +02:00
Otto Winter
237ecb3adf
Fix remote_receiver raw binary sensor ( #639 )
...
* Fix remote_receiver raw binary sensor
Fixes https://github.com/esphome/issues/issues/439
* Lint
2019-06-14 12:53:27 +02:00
Otto Winter
97f2becc9e
Fix globals.set ( #635 )
...
* Fix globals.set
* Update __init__.py
2019-06-14 12:40:14 +02:00
Brandon Davidson
88ccd60a08
Allow setting the initial mode of HLW8012 sensors ( #611 )
...
* Allow setting the initial mode of hlw8012 sensors
* Changes as per code review
2019-06-06 22:44:52 +02:00
Otto Winter
1bd408937a
Fix integration sensor, add test ( #619 )
...
* Fix integration sensor, add test
* Fix
* Fix
2019-06-06 15:06:02 +02:00
Otto Winter
e05688d639
Fix remote_receiver binary_sensor schema ( #578 )
...
Fixes https://github.com/esphome/issues/issues/353#issuecomment-497491863
2019-05-31 10:36:23 +02:00
Otto Winter
1ce257c721
Register light conditions ( #570 )
2019-05-30 13:12:12 +02:00
Otto Winter
31ddd3f668
Add uart.write action ( #567 )
...
* Add uart.write action
* Lint
2019-05-29 19:32:18 +02:00
Guillermo Ruffino
85513476ce
Add coolix climate ❄ 🔥 ( #521 )
...
* Lint
* add coolix climate ❄ 🔥
* Fixes
* Reviewed
* Fix for dev
ClimateDevice was renamed to Climate
* Remove stale method
* Lint
* Initialize target temperature, avoid NAN value
* Use clamp and round value
* Set to verbose message
Not really relevant to the user
* Remove constructor
Name is now set in climate.register_climate - saves integrations from having to declare a constructor
* Fix, add test
Co-authored-by: Otto Winter <otto@otto-winter.com>
2019-05-27 21:09:16 +02:00
Guillermo Ruffino
e62443933c
Add TCL112 climate ( #523 )
...
* Add TCL112 climate
* fix default mode
* Updates
* Update
* Update climate.py
My mistake :(
Co-authored-by: Otto Winter <otto@otto-winter.com>
2019-05-27 20:17:12 +02:00
Otto Winter
4323ca88c3
Add test for automation light effect
2019-05-27 19:35:36 +02:00
Otto Winter
83fa51a580
GPS time source ( #543 )
...
* GSP Time
* GPS Time
* Lint
* Multi conf
2019-05-13 13:11:02 +02:00
Otto Winter
0281914507
CCS811 support ( #536 )
...
* CCS811
* Move define, add test
* Remove sun artifact
* Lint
* Lint
2019-05-13 13:06:14 +02:00
Otto Winter
f811b1157c
Updates for 1.13 ( #546 )
...
* Update CI matcher
* Check Executable bit
* Quicklint
* Updates
* Allow pm1.0 and pm10.0 for PMS5003ST
Fixes https://github.com/esphome/feature-requests/issues/225
* PowerSupplyRequester
* Lint
* Include debug data in generated main.cpp
* Updates
* Auto-select bit_depth
* Updates
2019-05-12 23:04:36 +02:00
Otto Winter
8e75980ebd
Cleanup dashboard JS ( #491 )
...
* Cleanup dashboard JS
* Add vscode
* Save start_mark/end_mark
* Updates
* Updates
* Remove need for cv.nameable
It's a bit hacky but removes so much bloat from integrations
* Add enum helper
* Document APIs, and Improvements
* Fixes
* Fixes
* Update PULL_REQUEST_TEMPLATE.md
* Updates
* Updates
* Updates
2019-04-22 21:56:30 +02:00
Otto Winter
6682c43dfa
🏗 Merge C++ into python codebase ( #504 )
...
## Description:
Move esphome-core codebase into esphome (and a bunch of other refactors). See https://github.com/esphome/feature-requests/issues/97
Yes this is a shit ton of work and no there's no way to automate it :( But it will be worth it 👍
Progress:
- Core support (file copy etc): 80%
- Base Abstractions (light, switch): ~50%
- Integrations: ~10%
- Working? Yes, (but only with ported components).
Other refactors:
- Moves all codegen related stuff into a single class: `esphome.codegen` (imported as `cg`)
- Rework coroutine syntax
- Move from `component/platform.py` to `domain/component.py` structure as with HA
- Move all defaults out of C++ and into config validation.
- Remove `make_...` helpers from Application class. Reason: Merge conflicts with every single new integration.
- Pointer Variables are stored globally instead of locally in setup(). Reason: stack size limit.
Future work:
- Rework const.py - Move all `CONF_...` into a conf class (usage `conf.UPDATE_INTERVAL` vs `CONF_UPDATE_INTERVAL`). Reason: Less convoluted import block
- Enable loading from `custom_components` folder.
**Related issue (if applicable):** https://github.com/esphome/feature-requests/issues/97
**Pull request in [esphome-docs](https://github.com/esphome/esphome-docs ) with documentation (if applicable):** esphome/esphome-docs#<esphome-docs PR number goes here>
## Checklist:
- [ ] The code change is tested and works locally.
- [ ] Tests have been added to verify that the new code works (under `tests/` folder).
If user exposed functionality or configuration variables are added/changed:
- [ ] Documentation added/updated in [esphomedocs](https://github.com/OttoWinter/esphomedocs ).
2019-04-17 12:06:00 +02:00
Otto Winter
7fd5634a51
Add cover position/tilt support ( #496 )
...
* Add climate support
* Fixes
* Updates
* Updates
* Add ota
* Remove climate changes
* Lint
2019-04-08 18:08:58 +02:00
Otto Winter
de51bdda5b
Fix filter_out: nan filer ( #486 )
...
* Fix filter_out nan filter
Fixes https://github.com/esphome/issues/issues/138
* Add test
2019-03-18 15:07:20 +01:00
puuu
23df5d8af7
Support SDS011 component. ( #467 )
...
* Support SDS011 component.
* improve if condition
* Check update interval is multiple of minute
* do not allow update intervals longer than 30 min
* fix sensor schema name
* remove query_mode
* Warn if rx_only mode used together with update interval
* Allow update intervals below 1min
Messed that up before, as the docs say update intervals below 1min are allowed
* Use update interval in minutes
* use set_update_interval_min() to set update interval
2019-03-06 12:39:52 +01:00
Otto Winter
5c14ca030a
Add Wifi info text sensor ( #473 )
...
* Add WiFi Info text sensor
* Lint
* Fix register
* Add newline at end of file
2019-03-05 14:05:51 +01:00
Otto Winter
0fc6a027a7
Add copy output platform ( #472 )
2019-03-05 13:54:33 +01:00
Otto Winter
5b4f98d414
Revert "Remove piolibdeps cache"
...
This reverts commit e009f21a72
.
2019-03-05 13:53:09 +01:00
Otto Winter
99861259d7
Add MCP23017 ( #466 )
...
* Add MCP23017
* Add test
2019-03-03 16:51:55 +01:00
Otto Winter
5a102c2ab7
Rewrite interrupt components ( #464 )
...
* Rewrite intterupt components
* Fix test
2019-03-03 16:47:10 +01:00
Otto Winter
4b017e2096
Add WiFi/MQTT/API connected condition ( #465 )
...
* Add WiFi/MQTT/API connected condition
* Add tests
* Fix namespace
2019-03-03 16:45:56 +01:00
Otto Winter
7c65d44976
Add rotary encoder min/max value ( #463 )
2019-02-28 10:17:38 +01:00
Otto Winter
1778dd4df9
Add linear calibration sensor filter ( #454 )
...
* Add linear calibrate filter
* Remove filter_nan
* Add test
2019-02-26 19:38:39 +01:00
Otto Winter
3d1cce2a29
Add report_position test
...
Fixes https://github.com/esphome/issues/issues/46
2019-02-22 17:43:30 +01:00
Otto Winter
41d637affe
Add wait_until action ( #440 )
2019-02-17 19:27:33 +01:00
Otto Winter
f311a1bb30
Add display page abstraction ( #435 )
2019-02-17 00:35:23 +01:00
Otto Winter
944f0169cb
Add light partition platform ( #434 )
2019-02-16 16:47:23 +01:00
Otto Winter
4da0e0c223
Add text_sensor.template.publish action ( #433 )
...
* Add text_sensor.template.publish action
* Fix
* Add test
2019-02-16 16:47:05 +01:00
Otto Winter
52c0b45f41
Add RC5 IR code support ( #432 )
2019-02-16 15:30:59 +01:00
Otto Winter
3d9301a0f7
Rename esphomeyaml to esphome ( #426 )
...
* Rename
* Update
* Add migration
* Fix
* Fix dashboard
* Change test
* Fixes
* Code cleanup
* Fix import order
* Update
* Automate docker builds
* Shellcheck
2019-02-13 16:54:02 +01:00
Jesse Hills
463ad6f94b
Add support for JVC remote transmitting and receiving ( #423 )
...
* Add support for JVC remote transmitting and receiving
* Add missing import
* Fix line length
2019-02-11 18:09:31 +01:00
Otto Winter
4b7a41922c
Add template publish actions and switch triggers ( #391 )
...
* Add template publish actions and switch triggers
* Fix
* Add tests
* Add cover
* Lint
* Fix
* Fix
2019-02-10 23:35:07 +01:00
Otto Winter
61762bf299
Replace optimistic with Assumed State ( #394 )
...
* Replace optimistic with Assumed State
* Add tests
* Fix
* Lint
2019-02-10 23:28:56 +01:00
Otto Winter
d9cf91210e
Add local mDNS responder for .local ( #386 )
...
* Add local mDNS responder
* Fix
* Use mDNS in dashboard status
* Lint
* Lint
* Fix test
* Remove hostname
* Fix use enum
* Lint
2019-02-10 16:57:34 +01:00
Otto Winter
176c712eeb
Disable MQTT if not used ( #373 )
...
* Disable MQTT if not used
* Lint
2019-01-29 17:29:21 +01:00
Otto Winter
7b26ecc0dc
Remove Heartbeat Filter ( #393 )
...
* Remove Heartbeat Filter
* Fix tests
2019-01-29 16:45:50 +01:00
Otto Winter
e0fe0a2835
Remove deep sleep run_cycles ( #353 )
...
* Remove deep sleep run_cycles
* Fix test
2019-01-19 16:51:20 +01:00
Otto Winter
5ac9b8d545
Allow IPv4 addresses for SNTP servers ( #340 )
...
Fixes https://github.com/OttoWinter/esphomelib/issues/395
2019-01-15 20:13:20 +01:00
Otto Winter
52dbd35118
Add neopixelbus tests
2019-01-06 16:59:11 +01:00
Otto Winter
92439abeb4
Add tests, Fix stuff
2019-01-06 11:43:14 +01:00
sherbang
38c24fd100
Add support for MAX31855 sensor ( #258 )
...
* Add support for MAX31855 sensor
* Update for latest core changes
* Update max31855.py
2019-01-05 20:08:25 +01:00
Otto Winter
00ff99cc7d
Addressable Lights ( #294 )
2019-01-02 13:04:27 +01:00
Otto Winter
7c7032c59e
[Huge] Util Refactor, Dashboard Improvements, Hass.io Auth API, Better Validation Errors, Conditions, Custom Platforms, Substitutions ( #234 )
...
* 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
2018-12-05 21:22:06 +01:00
Otto Winter
2b88c987da
Fix GPIO input schema validator ( #253 )
2018-12-02 13:16:02 +01:00
puuu
083c2fce05
Add MY9231 support ( #227 )
2018-11-13 16:51:30 +01:00
Otto Winter
15331edb78
Let esphomeyaml know about class inheritance ( #229 )
...
* Allow overriding setup priority
* Add inheritance tree
* Global variables
* Tests and better validation
* Fix
* Lint
2018-11-12 23:30:31 +01:00
Otto Winter
8203b8fcd3
Add total daily energy sensor ( #220 )
...
* Add total daily energy sensor
* Add test
2018-11-09 20:27:19 +01:00
Otto Winter
0ad61f4a95
Add binary sensor multi click trigger ( #226 )
2018-11-09 20:18:04 +01:00
Otto Winter
9fd4076ab8
Revert Add power on value to GPIO switch ( #223 )
...
* Revert Add power on value to GPIO switch
* Fix tests
* Fix
2018-11-09 20:08:35 +01:00
Otto Winter
3ec931ffa4
Add restore state option to template switch ( #222 )
...
* Add restore state option to template switch
* Add test
2018-11-09 20:05:50 +01:00
Otto Winter
2fab7e73b9
Add send_first_at option to sliding window sensor filter ( #207 )
...
* Add send_first_at option to sliding window sensor filter
* Lint
2018-10-26 22:59:03 +02:00
Otto Winter
af4e2bf61d
Add Stepper Motor Support ( #206 )
...
* Add stepper support
* Fix output set_level
* Lint
2018-10-26 22:57:03 +02:00
Otto Winter
8bbfbc4cc1
Add logger.log action ( #198 )
...
* Add logger.log Action
* Simple schema
* Validate printf
* Improve error message
* Undo unfix tests :)
2018-10-20 15:19:59 +02:00
Otto Winter
25c66ed8ca
Improve API naming convention consistency ( #197 )
...
* Improve API naming convention consistency
* Fix
2018-10-20 15:16:58 +02:00
Otto Winter
92b6ed4180
Add FastLED color correction option ( #200 )
...
* Add FastLED color correction option
* Add test
2018-10-20 13:14:02 +02:00
Otto Winter
629f2b128e
Add MQTT publish JSON action and subscribe JSON trigger ( #193 )
...
* Add MQTT publish JSON action and subscribe JSON trigger
* Lint
2018-10-20 12:41:00 +02:00
Otto Winter
81bc400340
Add PN532 On Tag Trigger ( #189 )
...
* Add PN532 On Tag Trigger
* Lint
* Fix 😶
* Fix
2018-10-17 21:29:44 +02:00
Otto Winter
820067ae5a
GPIO Switch Power On Value v2 ( #183 )
2018-10-16 22:58:26 +02:00
Otto Winter
8d395e5338
MQTT different log level ( #167 )
...
* Add option to have different log level over MQTT
* Add Test
* Lint
2018-10-14 18:46:17 +02:00
Otto Winter
6a24145be6
Fix Wifi power_save_mode option ( #178 )
...
* Fix WIFI power_save_mode option
* Add Test
2018-10-13 21:17:19 +02:00
escoand
4a2cdbf31c
Add Samsung IR protocol ( #176 )
...
* add Samsung ir protocol
* fix pylint
* add test
* add transmitter
2018-10-13 19:21:06 +02:00
Otto Winter
cf264a2743
Fix binary sensor heartbeat not working ( #130 )
2018-09-27 16:34:02 +02:00
Otto Winter
ce4b339d16
Split up BLE tests into new file
2018-09-26 18:39:41 +02:00
Otto Winter
2abbe1bca3
Updates
2018-09-25 10:30:45 +02:00
Otto Winter
74c70509c2
Fix docker build
2018-09-25 10:30:45 +02:00