
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Tinkerforge Warp MQTT 2 API bridge
Tasmota based power meter sending MQTT messages such as:
{"Time":"2025-05-10T08:24:13","eHZ":{"E_in":67299.845,"E_out":50268.783,"Power":0,"Power2":4111}}
see Tasmota scripts
While the values can be send directly in the script e.g. via:
=>WebQuery http://192.168.XXX.XXX/meters/1/update POST [Content-Type:application/json] [%sml[3]%]
there is still a problem with the sign of the power. See also https://www.tinkerunity.org/topic/13014-tasmota-mqtt-middleware/
git clone https://github.com/WolfgangFahl/WarpMQTT2Api
pip install .
Store this as ~/.warp3/config.yaml
:
# WF 2025-09-05
# warp3 middleware configs
# this is for a Tasmota device reading the energy meter
# Wallbox
wallbox_host: "http://wallbox" # replace with your wallbox address
power_tag: "eHZ"
power_field: "Power2"
in_field: "E_in"
out_field: "E_out"
time_field: "Time"
meter_id: 2
# MQTT
mqtt_broker: "mqtt.bitplan.com"
mqtt_port: 1883
mqtt_topic: "tele/tasmota_*****/SENSOR" # replace with your tasmota device
mqtt_username: "*****" # replace with your user
mqtt_password: "********" # replace with your actual password
update_interval: 1 # every second
dry_run: false
warp3 -h
warp3 -h
usage: warp3 [-h] [--config-path CONFIG_PATH] [--mqtt-broker MQTT_BROKER]
[--mqtt-port MQTT_PORT] [--mqtt-topic MQTT_TOPIC]
[--mqtt-username MQTT_USERNAME] [--mqtt-password MQTT_PASSWORD]
[--dry-run] [--wallbox-host WALLBOX_HOST] [--power-tag POWER_TAG]
[--power-field POWER_FIELD] [--in-field IN_FIELD]
[--out-field OUT_FIELD] [--time-field TIME_FIELD]
[--meter-id METER_ID] [--update-interval UPDATE_INTERVAL]
[--debug]
MQTT to Warp3 Wallbox Middleware
options:
-h, --help show this help message and exit
--config-path CONFIG_PATH
Path to YAML configuration file
--mqtt-broker MQTT_BROKER
MQTT broker address
--mqtt-port MQTT_PORT
MQTT broker port
--mqtt-topic MQTT_TOPIC
MQTT topic to subscribe to
--mqtt-username MQTT_USERNAME
MQTT username
--mqtt-password MQTT_PASSWORD
MQTT password
--dry-run Run without updating the wallbox
--wallbox-host WALLBOX_HOST
Wallbox host URL
--power-tag POWER_TAG
Tag in MQTT data containing power information
--power-field POWER_FIELD
Field name in MQTT data containing active power value
--in-field IN_FIELD Field name in MQTT data containing energy input
--out-field OUT_FIELD
Field name in MQTT data containing energy output
--time-field TIME_FIELD
Field name in MQTT data containing timestamp
--meter-id METER_ID Meter ID to use
--update-interval UPDATE_INTERVAL
Minimum update interval in seconds
--debug Enable debug logging
warp3 --config-path $HOME/.warp3/config.yaml
2025-05-09 16:33:33,286 - INFO - Starting MQTT to Warp3 middleware
2025-05-09 16:33:33,286 - INFO - MQTT broker: mqtt.bitplan.com
2025-05-09 16:33:33,286 - INFO - MQTT topic: tele/tasmota_B13330/SENSOR
2025-05-09 16:33:33,286 - INFO - Wallbox host: http://wallbox.bitplan.com
2025-05-09 16:33:33,286 - INFO - Power tag: eHZ
2025-05-09 16:33:33,286 - INFO - Meter ID: 2
2025-05-09 16:33:33,303 - INFO - โ
Connected to Warp3 - Firmware version: 2.8.0+6810d7c9
2025-05-09 16:33:33,312 - INFO - โ
Meter 'Hausanschluss' at location 4 measures: 74: Summe der Phasenwirkleistungen (Bezug - Einspeisung)
2025-05-09 16:33:33,316 - INFO - Connected to MQTT broker at mqtt.bitplan.com
2025-05-09 16:33:33,316 - INFO - Subscribed to tele/tasmota_B13330/SENSOR
2025-05-09 16:33:43,423 - INFO - Power value: -360W
2025-05-09 16:33:43,433 - INFO - โ
-360 Watt set
## startup script
#!/bin/bash
# WF 2025-05-10
# Start Warp3 with nohup and log to /var/log/warp3
LOGDIR="/var/log/warp3"
LOGFILE="$LOGDIR/warp3.log"
APP="warp3"
OPTIONS="--config-path /home/wf/.warp3/config.yaml"
sudo mkdir -p "$LOGDIR"
sudo chmod 755 "$LOGDIR"
sudo chown wf:wf $LOGDIR
timestamp=$(date '+%F %T')
echo "$timestamp - INFO - ๐ Starting warp3" >> "$LOGFILE"
nohup "$APP" $OPTIONS >> "$LOGFILE" 2>&1 &
# run warp3 on reboot
@reboot /home/wf/bin/warp3start
cat /etc/logrotate.d/warp3
/var/log/warp3/warp3.log {
daily
rotate 7
compress
missingok
notifempty
delaycompress
copytruncate
}
``
FAQs
Unknown package
We found that WarpMQTT2Api 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.