Skip to content

Instantly share code, notes, and snippets.

@ESDN83
ESDN83 / AC-ELWA-E.js
Created March 11, 2022 00:18
AC-ELWA-E IObroker JS script. Working with Json and can run parallel to Modbus!!
const device_IP = "192.168.1.40"
let opt_path = "mypv.0";
const url_Data = 'http://' + device_IP + '/data.jsn';
const url_Setup = 'http://' + device_IP + '/setup.jsn';
function requestData() {
const options = {
url: url_Data,
@ESDN83
ESDN83 / parser.0.Leda.json
Last active March 25, 2024 18:57
parser conf -> can be loaded IoBroker Objects
{
"parser.0.Leda.00-BrennraumTemp": {
"_id": "parser.0.Leda.00-BrennraumTemp",
"common": {
"name": "Leda.00-BrennraumTemp",
"write": false,
"read": true,
"unit": "°C",
"type": "number",
"role": "temperature",
@ESDN83
ESDN83 / ledatronic.py
Last active March 25, 2024 18:57
ledatronic lt3 + KS4 + LUC Script... in dev.
import socket
import datetime;
DEFAULT_PORT = 10001
STATUS_START1=b'\x0e'
STATUS_START2=b'\xff'
STATUS_END=int(56)
class LedatronicComm: