Compare commits

...

2 Commits

Author SHA1 Message Date
Florian Brinker e3d1217224 Add TPLink HS100 again 2019-12-14 22:51:01 +01:00
Florian Brinker f61cd0b71b Add more Instagram Accounts 2019-12-14 22:50:45 +01:00
2 changed files with 87 additions and 7 deletions

View File

@ -71,13 +71,16 @@ influxdb:
max_retries: 3
include:
entities:
- device_tracker.mobile_fb
- sensor.attic_heatIndex
- sensor.attic_humidity
- sensor.attic_temperature
- sensor.bathroom_hygrometer_battery
- sensor.bathroom_hygrometer_humidity
- sensor.bathroom_hygrometer_temperature
- sensor.hygro_bathroom_parents_humidity
- sensor.hygro_bathroom_parents_temperature
- sensor.hygro_bathroom_kids_humidity
- sensor.hygro_bathroom_kids_temperature
- sensor.humidity_4 # Wohnzimmer
- sensor.temperature_3 # Wohnzimmer
- sensor.humidity_15 # Büro
- sensor.temperature_14 # Büro
- sensor.attic_humidity_2
- sensor.attic_temperature_2
# Youtube
- sensor.youtube_beauty
- sensor.youtube_beauty_videos
@ -103,6 +106,15 @@ influxdb:
- sensor.instagram_mtb
- sensor.instagram_mtb_follows
- sensor.instagram_mtb_media
- sensor.instagram_medieval
- sensor.instagram_medieval_follows
- sensor.instagram_medieval_media
- sensor.instagram_lotte
- sensor.instagram_lotte_follows
- sensor.instagram_lotte_media
- sensor.instagram_codedwithlove
- sensor.instagram_codedwithlove_follows
- sensor.instagram_codedwithlove_media
deconz:
host: !secret deconz_ip
@ -286,6 +298,11 @@ panel_iframe:
url: !secret url_esphome
icon: mdi:chip
tplink:
discovery: false
switch:
- host: !secret tplink_ip
#alert: !include_dir_merge_list alerts/
alexa: !include alexa.yaml
automation: !include_dir_merge_list automations/

View File

@ -155,3 +155,66 @@
resource: !secret instagram_mtb
value_template: '{{ value_json.data.counts.media }}'
force_update: true
# medieval
- platform: rest
scan_interval: 300
name: instagram_medieval
resource: !secret instagram_medieval
value_template: '{{ value_json.data.counts.followed_by }}'
unit_of_measurement: Followers
force_update: true
- platform: rest
scan_interval: 900
name: instagram_medieval_follows
resource: !secret instagram_medieval
value_template: '{{ value_json.data.counts.follows }}'
force_update: true
- platform: rest
scan_interval: 600
name: instagram_medieval_media
resource: !secret instagram_medieval
value_template: '{{ value_json.data.counts.media }}'
force_update: true
# lotte
- platform: rest
scan_interval: 300
name: instagram_lotte
resource: !secret instagram_lotte
value_template: '{{ value_json.data.counts.followed_by }}'
unit_of_measurement: Followers
force_update: true
- platform: rest
scan_interval: 900
name: instagram_lotte_follows
resource: !secret instagram_lotte
value_template: '{{ value_json.data.counts.follows }}'
force_update: true
- platform: rest
scan_interval: 600
name: instagram_lotte_media
resource: !secret instagram_lotte
value_template: '{{ value_json.data.counts.media }}'
force_update: true
# codedwithlove
- platform: rest
scan_interval: 300
name: instagram_codedwithlove
resource: !secret instagram_codedwithlove
value_template: '{{ value_json.data.counts.followed_by }}'
unit_of_measurement: Followers
force_update: true
- platform: rest
scan_interval: 900
name: instagram_codedwithlove_follows
resource: !secret instagram_codedwithlove
value_template: '{{ value_json.data.counts.follows }}'
force_update: true
- platform: rest
scan_interval: 600
name: instagram_codedwithlove_media
resource: !secret instagram_codedwithlove
value_template: '{{ value_json.data.counts.media }}'
force_update: true