J.J.Barrancos
24826c2770
Revert "Dependency breaks build"
...
This reverts commit c1aaed250a .
2017-10-11 16:02:32 +02:00
J.J.Barrancos
c1aaed250a
Dependency breaks build
2017-10-11 16:01:25 +02:00
J.J.Barrancos
59fcef39ff
Split requirements per line
2017-10-11 15:56:18 +02:00
J.J.Barrancos
d0ff45500b
Fixed dependency version
2017-10-11 15:45:07 +02:00
J.J.Barrancos
0ace832166
Requirements updated
2017-10-11 15:35:58 +02:00
J.J.Barrancos
7f97d166bf
Added dependency on pycrypto
...
Crypto Dependency missing found on virtualenv install. Added to dependecy rainbird.py
2017-10-11 15:15:50 +02:00
J.J.Barrancos
f036bf9353
Limited to switch on/off
...
Limited to switch on/off
Lowered loglevel
2017-10-06 15:22:22 +02:00
J.J.Barrancos
d2d28fd419
Moved all code into the switch component
...
Per request moved all the code inside the switch
2017-08-30 16:11:40 +02:00
J.J.Barrancos
67007aed40
Updated requirements_all.txt
2017-08-29 14:08:55 +02:00
J.J.Barrancos
df1c3dfb67
Hound issue "whitespace"
2017-08-29 13:47:47 +02:00
J.J.Barrancos
689484216d
Using latest module and fixed state issue
...
- pyrainbird 0.0.9 allows the override (if ever needed) connection retry/sleep
- Forces state towards the Entity when switching the switches. Gives better UI experience.
2017-08-29 13:45:18 +02:00
J.J.Barrancos
51c6029fe5
Fixed issue with missing key
2017-08-28 21:07:40 +02:00
J.J.Barrancos
0eee544d17
Changed component to use entity and switch
...
Changed component to use entity and switch.
2017-08-28 17:57:45 +02:00
J.J.Barrancos
21cca21124
Recommit corrected
...
Recommit corrected
2017-08-25 17:04:38 +02:00
J.J.Barrancos
f837451633
St*pid mistake.. wrong place
2017-08-25 16:59:37 +02:00
J.J.Barrancos
cce4a569e4
Changed doc and added default schema
2017-08-25 16:06:49 +02:00
J.J.Barrancos
4feea9d7ec
pydocstyle fixes
...
pydocstyle fixes
2017-08-25 13:26:38 +02:00
J.J.Barrancos
7aff588bf0
pylint, coverage and requirement fix
...
pylint, coverage and requirement fix
2017-08-25 12:01:32 +02:00
jbarrancos and GitHub
41a046a69d
Typo
2017-08-25 00:08:40 +02:00
jbarrancos and GitHub
e548bd5312
PIP8 Fixes
...
PIP8 Fixes
2017-08-24 22:49:54 +02:00
jbarrancos and GitHub
88098283c7
Markup fixes
...
Markup fixes
2017-08-24 22:40:45 +02:00
jbarrancos and GitHub
6c6ed29329
Fixed some markup and removed not yet needed class
...
Fixed issues during hound run (markup) and a class which is obsolete
2017-08-24 22:35:30 +02:00
jbarrancos and GitHub
c4f4e492e5
Removed some whitelines
...
Removed some whitelines
2017-08-24 18:41:25 +02:00
jbarrancos and GitHub
c286e2c434
Rainbird WiFi LNK Irrigation Implementation
...
This is a component which adds support for the Rainbird WiFi LNK Irragation system.
2017-08-24 18:30:36 +02:00
lekobob and Fabian Affolter
698d133455
Simplisafe unknown status fix ( #9111 )
...
* Simplisafe unknown status fix
Changed simplisafe-python requirement to 1.0.5 and changed state return
case statements to lower case
* Bump requirements_all.txt
2017-08-24 08:09:50 +02:00
Jeroen ter Heerdt and Pascal Vizeli
0dccef4063
pythonegardia package requirement to .18 ( #9104 )
...
* Bumping pythonegardia package requirement up to .18
* Updating requirements_all to reflect updated pythonegardia package .18
2017-08-23 17:11:13 +02:00
Daniel Høyer Iversen and GitHub
feb85b90b4
upgrade Xiaomi Gateway lib to 0.3 ( #9101 )
2017-08-23 12:37:17 +02:00
Robin and Paulus Schoutsen
48909539be
Fix issue 8894 with uk_transport component if no next_buses or next_trains ( #9046 )
...
* Fix bug if no next_buses or trains
Fixes https://github.com/home-assistant/home-assistant/issues/8894
* Requested fixes
2017-08-23 00:05:06 -07:00
Fabian Affolter and Paulus Schoutsen
2355216f61
Catch exceptions ( #9085 )
...
* Catch exceptions
* Fix pylint disable
* Move check for emtpy target list
2017-08-22 22:21:09 -07:00
Teemu R and Paulus Schoutsen
55a44b0a1c
Yeelight fix updates on hsv mode ( #9093 )
...
* cast strings to integers for hsv_to_rgb conversion, fixes #6473
* remove type_checking, flake8 does not like that.
* use hsv_to_rgb to convert to correct rgb value
2017-08-22 22:19:33 -07:00
happyleavesaoc and Paulus Schoutsen
27b0d648a6
bump fedex version ( #9099 )
2017-08-22 22:14:06 -07:00
happyleavesaoc and Paulus Schoutsen
90724847a3
bump snapcast version ( #9100 )
2017-08-22 22:13:52 -07:00
Teemu R and Paulus Schoutsen
90fb33f610
Support changing the bulb color for tplink smartbulbs, fixes #8766 ( #8780 )
...
* Support changing the bulb color for tplink smartbulbs, related to #8766
* existence of ATTR_RGB_COLOR in kwargs, not just its existence...
* return modified supported features
* rgb-hsv conversion utils from hass return bogus values (at least for this device), so doing conversions directly with colorsys
* add typing & documentation for color model conversions
* make linters happy
* cast hsv to integer before passing it to the backend library
* make sure the bulb is on before adjusting the other settings
* allow floats as inputs for conversions, return always integers
* use typing hint in the parameter list instead of at assignment
* do not assign local color state inside turn_on, but let update handle doing it
* use forward declaration for typing, fixes travis requirements build hopefully
* rename hsv and rgb
* remove type-checking check, forward declarations should work just fine without it
* disable (broken) pylint warnings, these can be removed after astroid is updated from 1.4.9 to 1.5
2017-08-22 22:11:44 -07:00
aetolus and Pascal Vizeli
cb59b3fee1
Add worldtidesinfo sensor component ( #8860 )
...
* Style fixes for worldtidesinfo sensor component
* Fix D202 for worldtidesinfo sensor component
* Multiple fixes
* Multiple fixes
* Fixes
* more
* working with changes
* changes
* changes
* fix style errors
* fix style errors
* Complete rewrite
* worldtidesinfo
Fix D202 for worldtidesinfo sensor component
Multiple fixes
Multiple fixes
Fixes
more
working with changes
changes
changes
fix style errors
fix style errors
Complete rewrite
PR Changes
* Fix
* fix scan interval & lint
2017-08-23 00:40:16 +02:00
Michaël Arnauts and Fabian Affolter
90689c38f7
Fix netdata system_load and add disk_free. ( #9091 )
2017-08-22 17:52:29 +02:00
Jan Losinski and Pascal Vizeli
fd6fd765b2
Pilight switch: restore last state after restart ( #8580 )
...
* Pilight switch: restore last state after restart
This uses the restore_state helper to set the last known state to
pilight switches when the devices are initialized after a HA
restart.
Without this HA forget the state on every restart and needs to be told
the sttae by retoggling the switches. This can cause unwanted effects
as a switch toggling may emit an RF signal.
* Make hound happy
Signed-off-by: Jan Losinski <losinski@wh2.tu-dresden.de >
* Remove entity_id generation as requested in review.
* Make hound happy again.
* fix comments
* fix lint
2017-08-22 16:40:14 +02:00
William Scanlon and GitHub
06a20d0d15
Fix octoprint errors when printer is off/disconnected ( #8988 )
...
* Fix octoprint errors when printer is off/disconnected
2017-08-22 09:37:06 -04:00
Fabian Affolter and GitHub
252aea37d2
Don't redefine consts ( #9086 )
2017-08-22 13:12:01 +02:00
Alex and Andrey
5a3a43cd5b
9043 Fixed error while running dev docker ( #9044 )
2017-08-22 13:48:50 +03:00
Fabian Affolter and Andrey
dd0ca0adc4
Upgrade credstash to 1.13.3 ( #9088 )
2017-08-22 13:32:46 +03:00
Fabian Affolter and Andrey
c77d2ea341
Remove dash ( #9089 )
2017-08-22 13:31:53 +03:00
Fabian Affolter and Andrey
4a3be6d514
Upgrade youtube_dl to 2017.8.18 ( #9079 )
2017-08-22 10:26:31 +03:00
Max and Andrey
da2cb8e97e
Fix device attribute in fritz_callmonitor.py ( fixes #9055 ) ( #9081 )
2017-08-22 10:24:36 +03:00
Fabian Affolter and Andrey
42fcaf9a75
Upgrade discord.py to 0.16.10 ( #9082 )
2017-08-22 10:24:02 +03:00
Fabian Affolter and Andrey
af8aec001c
Upgrade uber_rides to 0.5.1 ( #9080 )
2017-08-22 10:23:11 +03:00
Tom Harris and Andrey
f6c5e5ff00
Added insteonplm device_override multiple capabilities ( #9078 )
2017-08-22 10:22:37 +03:00
Erik Eriksson and Pascal Vizeli
398735c9be
async_query returns False if connection to server failed, handle this properly ( #9070 )
2017-08-22 07:09:11 +02:00
Alok Saboo and Pascal Vizeli
8ceeee032c
Bump abodepy to 0.7.1 ( #9077 )
...
* Version bump to 0.7.1
* Update abodepy version
2017-08-22 07:08:27 +02:00
Nolan Gilley and Fabian Affolter
54f01f3f11
bump python-ecobee-api version to 0.0.8 ( #9074 )
2017-08-21 23:16:17 +02:00
Alok Saboo and Martin Hjelmare
bc549e9525
Use builtin constants for Abode alarm_control_panel ( #9059 )
...
* Use builtin constants for alarm_control_panel
* Made it consistent with other alarm panels
* Replaced STATE_UNKNOWN with None
2017-08-21 22:20:38 +02:00