This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Aaron was here! | |
Aaron says hi! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
File: denvertrash.py | |
Author: Aaron Bach | |
Email: [email protected] | |
""" | |
import datetime | |
import logging | |
import os |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
File: denvertrash.py | |
Author: Aaron Bach | |
Email: [email protected] | |
""" | |
import asyncio | |
import datetime | |
import logging |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Provides data for trash/recycling/etc. pickups.""" | |
from logging import getLogger | |
from datetime import timedelta | |
from math import ceil | |
import voluptuous as vol | |
import homeassistant.helpers.config_validation as cv | |
import homeassistant.util.dt as dt | |
from homeassistant.components.sensor import PLATFORM_SCHEMA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
binary_sensor: | |
- platform: 'bayesian' | |
name: In Bed | |
prior: 0.29 | |
probability_threshold: 0.95 | |
observations: | |
- entity_id: 'input_boolean.in_blackout' | |
prob_given_true: 0.9 | |
platform: 'state' | |
to_state: 'on' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2017-10-19 09:52:42 INFO (MainThread) [homeassistant.loader] Loaded history from homeassistant.components.history | |
2017-10-19 09:52:42 INFO (MainThread) [homeassistant.loader] Loaded recorder from homeassistant.components.recorder | |
2017-10-19 09:52:42 INFO (MainThread) [homeassistant.loader] Loaded http from homeassistant.components.http | |
2017-10-19 09:52:42 INFO (MainThread) [homeassistant.loader] Loaded frontend from homeassistant.components.frontend | |
2017-10-19 09:52:42 INFO (MainThread) [homeassistant.loader] Loaded api from homeassistant.components.api | |
2017-10-19 09:52:42 INFO (MainThread) [homeassistant.loader] Loaded websocket_api from homeassistant.components.websocket_api | |
2017-10-19 09:52:42 INFO (MainThread) [homeassistant.core] Bus:Handling <Event service_registered[L]: domain=logger, service=set_level> | |
2017-10-19 09:52:42 INFO (MainThread) [homeassistant.setup] Setup of domain logger took 0.4 seconds. | |
2017-10-19 09:52:42 INFO (MainThread) [homeassistant.core] Bus:Handling <Event component_loaded[L]: c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- platform: denvertrash | |
recollect_place_id: xxxxxxxxxxx | |
monitored_conditions: | |
- extra_trash | |
- recycling | |
- trash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
living_room_tv: | |
module: harmony | |
class: HarmonyRemote | |
entity: remote.samsung_tv | |
activities: | |
play_ps4: 27901089 | |
watch_roku: 39586383 | |
watch_tv: 27901129 | |
sonos_manager: | |
module: sonos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Location ID: 123456 | |
System version: 2 | |
System state: home | |
Alarming: False | |
Temperature: 65 | |
Sensors: | |
My Keychain | |
Type: keychain | |
Serial: ABC12 | |
Data: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
homeassistant: | |
elevation: !secret base_elevation | |
latitude: !secret base_latitude | |
longitude: !secret base_longitude | |
name: !secret base_name | |
temperature_unit: F | |
time_zone: !secret base_time_zone | |
unit_system: imperial | |
whitelist_external_dirs: |