Skip to content

Commit

Permalink
feat: Add support for RND power supplies
Browse files Browse the repository at this point in the history
A very limited port of this:
https://github.com/rumpelsepp/opennetzteil/blob/master/devices/rnd/rnd320.go

However, these devices are so buggy that only switch on/off works
reliably … (in most cases).
  • Loading branch information
rumpelsepp committed Dec 19, 2024
1 parent 9780246 commit 7a9f0f1
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 0 deletions.
5 changes: 5 additions & 0 deletions contrib/rnd.rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# SPDX-FileCopyrightText: AISEC Pentesting Team
#
# SPDX-License-Identifier: CC0-1.0

KERNEL=="ttyACM[0-9]*", SUBSYSTEM=="tty", SUBSYSTEMS=="usb", ATTRS{idVendor}=="0416", ATTRS{idProduct}=="5011", SYMLINK+="rnd-netzteil"
67 changes: 67 additions & 0 deletions src/gallia/power_supply/devices/rnd.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# SPDX-FileCopyrightText: AISEC Pentesting Team
#
# SPDX-License-Identifier: Apache-2.0

import asyncio
from pathlib import Path
from typing import Any

from gallia.power_supply.base import BasePowerSupplyDriver
from gallia.power_supply.exceptions import OperationNotSupportedError


class RND320(BasePowerSupplyDriver):
PRODUCT_ID = "RND320"

def _send(self, data: str) -> None:
with Path(self.target.path).open("w") as f:
f.write(data)

async def get_ident(self) -> str:
raise OperationNotSupportedError

async def get_master(self) -> bool:
raise OperationNotSupportedError

async def set_master(self, enabled: bool) -> None:
cmd = "OUT1" if enabled else "OUT0"
await asyncio.to_thread(self._send, cmd)

async def get_channels(self) -> int:
return 1

async def get_current(self, channel: int) -> float:
raise OperationNotSupportedError

async def set_current(self, channel: int, value: float) -> None:
raise OperationNotSupportedError

async def get_voltage(self, channel: int) -> float:
raise OperationNotSupportedError

async def set_voltage(self, channel: int, value: float) -> None:
raise OperationNotSupportedError

async def get_output(self, channel: int) -> bool:
raise OperationNotSupportedError

async def set_output(self, channel: int, enabled: bool) -> None:
await self.set_master(enabled)

async def status(self) -> dict[str, Any]:
raise OperationNotSupportedError

async def get_ocp(self, channel: int) -> bool:
raise OperationNotSupportedError

async def set_ocp(self, channel: int, enabled: bool) -> None:
raise OperationNotSupportedError

async def get_ovp(self, channel: int) -> bool:
raise OperationNotSupportedError

async def set_ovp(self, channel: int, enabled: bool) -> None:
raise OperationNotSupportedError

async def set_beep(self, enabled: bool) -> None:
raise OperationNotSupportedError

0 comments on commit 7a9f0f1

Please sign in to comment.