From 11bd929aadd64c4885d877219251f476453d4ff3 Mon Sep 17 00:00:00 2001 From: PSc-secunet <92575786+PSc-secunet@users.noreply.github.com> Date: Wed, 8 Mar 2023 14:14:01 +0100 Subject: [PATCH] Add documentation for Anel NET-PwrCtrl PDU Plugin (#959) * Add documentation for Anel NET-PwrCtrl PDU Plugin * sync documentation with plugin updates --------- Co-authored-by: Peter Schumann --- docs/gpio.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/docs/gpio.md b/docs/gpio.md index 946e753e..0c91ddd1 100644 --- a/docs/gpio.md +++ b/docs/gpio.md @@ -525,3 +525,36 @@ kvmd - ["plug_led", "plug_button"] ``` +### ANEL NET-PwrCtrl +??? note "Click to view" + The `anelpwr` plugin allows you to use ANEL NET-PwrCrtl IP-PDUs (switchabel sockets) as gpios. There are up to 8 Ports per PDU. Input pulls the the current state from the PDU, Output switches the Socket. + + ```yaml + kvmd: + gpio: + drivers: + anel_pdu_1: + type: anelpwr + url: http://IP:Port/ + user: admin + passwd: anel + initial: null + scheme: + pdu1_1_pwr: + pin: 1 + driver: anel_pdu_1 + mode: output + pulse: + delay: 0 + pdu1_1_led: + pin: 1 + driver: anel_pdu_1 + mode: input + view: + header: + title: "PDUs" + table: + - ["#PDU1"] + - [] + - ["#PDU1_Port1:", pdu1_1_led, "pdu1_1_pwr|confirm|test"] + ``` \ No newline at end of file