Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/home-assistant/core.git. Pull mirroring updated .
  1. Jun 15, 2018
  2. Jun 14, 2018
    • Paulus Schoutsen's avatar
      Add config entry for Sonos + Cast (#14955) · 2c6e6c2a
      Paulus Schoutsen authored
      * Add config entry for Sonos
      
      * Lint
      
      * Use add_job
      
      * Add Cast config entry
      
      * Lint
      
      * Rename DOMAIN import
      
      * Mock pychromecast in test
      2c6e6c2a
    • Benedict Aas's avatar
      add relative time option to simulated sensors (#14038) · c8e0de19
      Benedict Aas authored
      By default simulated sensors are relative to when they're activated,
      instead we make this togglable with this new option 'relative_to_epoch',
      and instead they become relative to 1970-01-01 00:00:00.
      c8e0de19
    • Paulus Schoutsen's avatar
      Fix tests (#14959) · b2440a6d
      Paulus Schoutsen authored
      * Fix tests
      
      * Lint
      b2440a6d
    • ruohan.chen's avatar
      Add support for ZhongHong HVAC Controllers (#14552) · c36c3f0d
      ruohan.chen authored
      * first blood for ZhongHong HVAC Controller
      
      * add requirements
      
      * requirements_all.txt updated
      
      * add zhong_hong.py to coveragerc
      
      * add comments
      
      * unique_id add platform name
      
      * zhong_hong_hvac version bump to 1.0.1
      
      * improve some coding style to match the project standard
      
      * zhong_hong_hvac version bump to 1.0.4
      
      * zhong_hong_hvac version require 1.0.7
      
      * update requirements by script/gen_requirements_all.py
      
      * zhong_hong_hvac version bump to 1.0.8
      
      * fix startup problem
      
      * remove unused import
      
      * zhong_hong_hvac version bump to 1.0.9
      
      - operation_mode: cold -> cool
      
      * start hub listen event when all climate entities is ready
      
      * use dispatcher to setup hub
      
      * var name change
      
      SIGNAL_DEVICE_SETTED_UP -> SIGNAL_DEVICE_ADDED
      
      * async problem fix
      
      * bugfix: set_operation_mode forget to use upper case
      
      * stringify the exception instead of print full stack of traceback
      
      * avoid to call str(exception) explicity
      
      * remove unnecessary try...except clause
      
      * remove unused import
      c36c3f0d
    • Aaron Bach's avatar
      Make AirVisual platform async + other adjustments (#14943) · 0e7d284c
      Aaron Bach authored
      * Changes complete
      
      * Updated requirements
      
      * Add support for scan_interval
      
      * Small style update
      
      * Owner-requested changes
      0e7d284c
    • Nick Whyte's avatar
      Add sensor.nsw_fuel_station component (#14757) · cdd111df
      Nick Whyte authored
      * Add sensor.nsw_fuel_station component
      
      * bump dependency
      
      * PR Changes
      
      * flake8
      
      * Use MockPrice
      
      * Fix requirements
      
      * Fix tests
      
      * line length
      
      * wip
      
      * Handle errors and show persistent notification
      
      * update tests
      
      * Address @MartinHjelmare's comments
      
      * Fetch station name from API
      
      * Update tests
      
      * Update requirements
      
      * Address comments
      cdd111df
  3. Jun 13, 2018
  4. Jun 12, 2018
    • Ing. Jaroslav Šafka's avatar
      Fix snapcast uuid to be more unique (#14925) · 89d008d1
      Ing. Jaroslav Šafka authored
      Current uuid is ok when using only 1 snapserver
      New uuid is needed when using multiple snapserver
      
      Because the client can connect to more snapservers and
      then uuid based on client MAC is not enough
      89d008d1
    • Christoph Gerneth's avatar
      Add support for KIWI Door Locks (#14485) · 6755ae26
      Christoph Gerneth authored
      * initial commit for kiwi door locks
      
      bugfixes
      
      improved attribute display
      
      flake8
      
      more style adjustments
      
      * added session handling
      
      flake8
      
      * added requirements_all
      
      reordered imports and flake8
      
      attempt to pelase a very picky linter
      
      also pleasing pylint now :)
      
      * re-try the build
      
      * added kiwi.py to .coveragerc
      
      * reorganized datetime handling and attribute naming
      
      * created pypi package for door lock library
      
      * updated requirements_all.txt
      
      * code review changes
      
      * added async lock state reset for locking state
      
      * refactored lat/lon attribute updates
      
      * initial locked state changed from undefined to locked
      
      * refactored is_locked property check
      
      * handling authentication exception in setup_platform
      
      * added more check in setup_platform
      
      * code review changes: return type in setup_platform
      
      * fixed logging issue
      
      * event handling in main thread
      
      * updated kiwiki-client to version 0.1.1
      
      * renamed alias e to exc
      6755ae26
    • Jason Hu's avatar
      c18033ba
    • Marcelo Moreira de Mello's avatar
      Refactored Arlo component and enhanced Arlo API queries and times (#14823) · cdc5388d
      Marcelo Moreira de Mello authored
      * start arlo refactoring
      
      * Refactored Arlo Hub to avoid uncessary and duplicated GETs to Arlo API
      
      * Refactored Arlo camera component to avoid duplicate queries
      
      * Added debug and error messages when video is not found
      
      * Transformed Arlo Control Panel to Sync
      
      * Makes linter happy
      
      * Uses total_seconds() for scan_interval
      
      * Added callback and fixed scan_interval issue
      
      * Disable multiple tries and supported custom modes set in Arlo
      
      * Bump PyArlo version to 0.1.4
      
      * Makes lint happy
      
      * Removed ArloHub object and added some tweaks
      
      * Fixed hub_refresh method
      
      * Makes lint happy
      
      * Ajusted async syntax and added callbacks decorators
      
      * Bump PyArlo version to 0.1.6 to include some enhacements
      
      * Refined code
      cdc5388d
    • Ong Vairoj's avatar
      Add more test cases for samsungtv (#14900) · be4776d0
      Ong Vairoj authored
      More test cases to cover retry logic added in 58a1c3839
      be4776d0
    • Jason Hu's avatar
  5. Jun 11, 2018
    • Erik Eriksson's avatar
      Update mqtt_eventstream.py (#14923) · 576c806e
      Erik Eriksson authored
      * Update mqtt_eventstream.py
      
      Remove a line setting an internal state mqtt_eventstream.initialized to True since:
      1. No other platform is doing this
      2. This will create an annoying entity/item in the user interface which the user will have to explicitly hide
      
      * Update mqtt_eventstream.py
      576c806e
  6. Jun 10, 2018
Loading