This file contains hidden or 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 { | |
NetworkOptions, SerialPortOptions, Coordinator, CoordinatorVersion, NodeDescriptor, | |
DeviceType, ActiveEndpoints, SimpleDescriptor, LQI, RoutingTable, Backup as BackupType, NetworkParameters, | |
StartResult, LQINeighbor, RoutingTableEntry, | |
} from '../../tstype'; | |
import {ZnpVersion} from './tstype'; | |
import * as Events from '../../events'; | |
import Adapter from '../../adapter'; | |
import {Znp, ZpiObject} from '../znp'; | |
import StartZnp from './startZnp'; |
This file contains hidden or 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
""" | |
Support for RESTful API sensors. | |
For more details about this platform, please refer to the documentation at | |
https://home-assistant.io/components/sensor.rest/ | |
Modified to parse a JSON reply and store data as attributes | |
""" | |
import logging |