labgrid.driver.power package
Submodules
labgrid.driver.power.apc module
labgrid.driver.power.digipower module
labgrid.driver.power.digitalloggers_http module
Driver for Digital Loggers PDU that use the legacy HTTP API. Tested with Web Power Switch 7.
labgrid.driver.power.eaton module
labgrid.driver.power.eg_pms2_network module
- labgrid.driver.power.eg_pms2_network.login(base_url: str) None [source]
Use the default password 1, because labgrid doesn’t support password encryption, modifying the password doesn’t secure the device as the password would be stored as plain-text.
labgrid.driver.power.gude module
labgrid.driver.power.gude24 module
This driver implements a power port for Gude Power Switches with up to 24 ports. These switches differ in their API to the previous 8-port switches for set- and get-commands.
Driver has been tested with: * Gude Expert Power Control 8080
labgrid.driver.power.gude8031 module
labgrid.driver.power.gude8225 module
labgrid.driver.power.gude8316 module
labgrid.driver.power.netio module
labgrid.driver.power.netio_kshell module
tested with NETIO 4C, should be compatible with all NETIO 4-models
labgrid.driver.power.raritan module
labgrid.driver.power.rest module
Rest interface for controlling power port, using PUT / GET on a URL.
- NetworkPowerPort:
model: rest host: ‘http://192.168.0.42/relay/{index}/value’ index: 3
Will do a GET request to http://192.168.0.42/relay/3/value to get current relay state, expecting a response of either ‘0’ (relay off) or ‘1’ (relay on), and a PUT request to http://192.168.0.42/relay/3/value with request data of ‘0’ or ‘1’ to change relay state.
labgrid.driver.power.sentry module
This driver was tested on those models: CW-24VDD and 4805-XLS-16 but should be working on all devices implementing Sentry3-MIB
labgrid.driver.power.shelly_gen1 module
Interface for controlling relays of Shelly devices using the Gen 1 API
- NetworkPowerPort:
model: shelly_gen1 host: ‘http://192.168.0.42’ index: 0
Will do a GET request to http://192.168.0.42/relay/0 to get the current relay state, and a POST request to http://192.168.0.42/relay/0 with request data of ‘turn=off’ or ‘turn=on’ to change the relay state.
Also, see the official Gen 1 Device API documentation: https://shelly-api-docs.shelly.cloud/gen1/
labgrid.driver.power.siglent module
labgrid.driver.power.simplerest module
- Simple rest interface for Power Port. Used for ex. misc Raspberry Pi configs
Author: Kjeld Flarup <kfa@deif.com>
The URL given in hosts in exporter.yaml must replace {value} with ‘0’ or ‘1’ It is optional whether to use {index} or not.
- NetworkPowerPort:
model: simplerest host: ‘http://172.17.180.53:9999/relay/{index}/{value}’ index: 0