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
modbus: | |
name: e3dc | |
type: tcp | |
host: 192.168.1.68 | |
port: 502 | |
sensor: | |
- platform: template | |
sensors: | |
e3dc_netzeinspeisung: |
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
[ | |
{ | |
"identifier": "XX1", | |
"tracking_number": "XXXXXX", | |
"courier_id": "dhl", | |
"user_id": "XXX", | |
"content": "item", | |
"sender": { | |
"name": "sender", | |
"location": { |
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
{ | |
"VCU2333555": { | |
"MASTER": {}, | |
"SERVICE": { | |
"TEST_STATUS": { | |
"MIN": 0, | |
"OPERATIONS": 1, | |
"MAX": 255, | |
"FLAGS": 1, | |
"ID": "TEST_STATUS", |
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
a[ | |
{ | |
"TYPE": "HmIP-FSI16", | |
"SUBTYPE": "FSI16", | |
"ADDRESS": "VCU2333555", | |
"RF_ADDRESS": 4868742, | |
"CHILDREN": [ | |
"VCU2333555:0", | |
"VCU2333555:1", | |
"VCU2333555:2", |
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
{ | |
"VCU1954019": { | |
"MASTER": {}, | |
"SERVICE": { | |
"TEST_STATUS": { | |
"MIN": 0, | |
"OPERATIONS": 1, | |
"MAX": 255, | |
"FLAGS": 1, | |
"ID": "TEST_STATUS", |
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
[ | |
{ | |
"TYPE": "HmIP-FAL230-C10", | |
"SUBTYPE": "FAL-C10", | |
"ADDRESS": "VCU1954019", | |
"RF_ADDRESS": 10452110, | |
"CHILDREN": [ | |
"VCU1954019:0", | |
"VCU1954019:1", | |
"VCU1954019:2", |
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
sensor: | |
- platform: abfall_lrbb | |
resources: | |
- restmuell | |
- papiertonne | |
- wertstofftonne | |
- bioabfall | |
- platform: template | |
sensors: | |
wertstoffe_text: |
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
import logging | |
import requests | |
import csv | |
from datetime import datetime | |
from datetime import timedelta | |
import voluptuous as vol | |
from pprint import pprint | |
from homeassistant.components.sensor import PLATFORM_SCHEMA | |
import homeassistant.helpers.config_validation as cv |