You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Python 3 daemon that bridges XBee ZigBee radios to MQTT brokers. It monitors a coordinator XBee connected to a serial port, translates radio messages to MQTT topics, and enables remote control of XBee digital I/O pins through MQTT commands.
4
8
5
9
From version 0.3 it also supports setting digital pins LOW or HIGH on remote radios.
@@ -10,7 +14,26 @@ From version 0.3 it also supports setting digital pins LOW or HIGH on remote rad
10
14
11
15
## Quick Start with Docker (Recommended)
12
16
13
-
The easiest way to run xbee2mqtt is using Docker. Works on any Linux system including Raspberry Pi!
17
+
The easiest way to run xbee2mqtt is using Docker. Pre-built images available for all major architectures!
18
+
19
+
### Using Docker Hub (Recommended)
20
+
21
+
```bash
22
+
# Pull the latest image (automatically selects your architecture)
23
+
docker pull amd989/xbee2mqtt:latest
24
+
25
+
# Or use docker-compose (see docker-compose.yml)
26
+
docker-compose up -d
27
+
```
28
+
29
+
**Supported architectures:**
30
+
-`linux/amd64` - x86 64-bit (PCs, servers, cloud)
31
+
-`linux/arm64` - ARM 64-bit (Raspberry Pi 3/4/5 with 64-bit OS)
32
+
-`linux/arm/v7` - ARM 32-bit v7 (Raspberry Pi 2/3/4 with 32-bit OS)
33
+
-`linux/arm/v6` - ARM 32-bit v6 (Raspberry Pi Zero, Pi 1)
0 commit comments