
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
ta-cmi
Advanced tools
A Python wrapper to read out sensors from Technische Alternative using the C.M.I.
import asyncio
from ta_cmi import CMI, Languages, ApiError, RateLimitError, InvalidCredentialsError, InvalidDeviceError, ChannelType
async def main():
try:
cmi = CMI("http://192.168.1.101", "admin", "admin")
devices = await cmi.get_devices()
device = devices[0]
# Set type automatically
await device.fetch_type()
# Set type manually
device.set_device_type("UVR16x2")
await device.update()
print(str(device))
inputChannels = device.get_channels(ChannelType.INPUT)
outputChannels = device.get_channels(ChannelType.OUTPUT)
analogLogging = device.get_channels(ChannelType.ANALOG_LOGGING)
for i in inputChannels:
ch = inputChannels.get(i)
print(str(ch))
for o in outputChannels:
ch = outputChannels.get(o)
print(f"{str(ch)} - {ch.get_unit(Languages.DE)}")
for al in analogLogging:
ch = analogLogging.get(al)
print(f"{str(ch)} - {ch.get_unit(Languages.DE)}")
except (ApiError, RateLimitError, InvalidCredentialsError, InvalidDeviceError) as error:
print(f"Error: {error}")
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()
| Device type | Inputs | Outputs | DL-inputs | System-values: General | System-values: Date | System-values: Time | System-values: Sun | System-values: Electrical power | Analog network inputs | Digital network inputs | M-Bus | Modbus | KNX | Analog logging | Digital logging |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| UVR1611 | β | β | β | β | β | β | β | β | β | β | β | β | β | β | β |
| UVR16x2 | β | β | β | β | β | β | β | β | β | β | β | β | β | β | β |
| RSM610 | β | β | β | β | β | β | β | β | β | β | β | β | β | β | β |
| CAN-I/O45 | β | β | β | β | β | β | β | β | β | β | β | β | β | β | β |
| CAN-EZ2 | β | β | β | β | β | β | β | β | β | β | β | β | β | β | β |
| CAN-MTx2 | β | β | β | β | β | β | β | β | β | β | β | β | β | β | β |
| CAN-BC2 | β | β | β | β | β | β | β | β | β | β | β | β | β | β | β |
| UVR65 | β | β | β | β | β | β | β | β | β | β | β | β | β | β | β |
| CAN-EZ3 | β | β | β | β | β | β | β | β | β | β | β | β | β | β | β |
| UVR610 | β | β | β | β | β | β | β | β | β | β | β | β | β | β | β |
| UVR67 | β | β | β | β | β | β | β | β | β | β | β | β | β | β | β |
Note The supported data types may differ from the official API. If a device type supports other data types than listed here, please create an issue.
Data can be retrieved using this CoE to HTTP server
import asyncio
from ta_cmi import (
ApiError,
ChannelMode,
CoE,
InvalidCredentialsError,
InvalidDeviceError,
Languages,
RateLimitError,
)
async def main():
try:
coe = CoE("http://192.168.2.201:9000")
can_id = 42
await coe.update(can_id)
analog_channels = coe.get_channels(can_id, ChannelMode.ANALOG)
digital_channels = coe.get_channels(can_id, ChannelMode.DIGITAL)
for i in analog_channels:
ch = analog_channels.get(i)
print(str(ch))
for o in digital_channels:
ch = digital_channels.get(o)
print(f"{str(ch)} - {ch.get_unit(Languages.DE)}")
except (ApiError, RateLimitError, InvalidCredentialsError, InvalidDeviceError) as error:
print(f"Error: {error}")
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()
FAQs
A Python wrapper to read out sensors from Technische Alternative using the C.M.I.
We found that ta-cmi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Β It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: whatβs affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.