Set up your DataPix
From a powered-off device to your first view on the panel. You need the device, its 5 V panel power supply, and a phone or computer.
First-time setup
-
Power on
Connect the panel's 5 V supply and power the controller. The panel shows a “DataPix” splash while it boots.
-
Join the device's Wi-Fi
With no network saved yet, the panel scrolls setup instructions and the device brings up its own access point:
- Network
DataPix- Password
datapix123- Then open
http://192.168.4.1
On most phones a captive-portal page opens automatically. If it doesn't, open
http://192.168.4.1in a browser. -
Connect it to your Wi-Fi
In the interface: WiFi Connection → Scan Networks, pick your network, enter its password, and Save. The device reboots onto your network.
-
Reopen the interface on your normal network
The panel briefly shows “WIFI CONNECTED”, then scrolls the device's IP address. From a computer on the same network, open
http://<that-IP>.There is nodatapix.localaddress on this build and no login — the interface is open to anyone on your LAN. Note the IP from the panel or from WiFi Connection → WiFi Status. -
Set the time zone
Open Network Time and choose your zone so clock and countdown values are correct.
-
Create your first view
Views → New view, then either pick a guided preset or start from Custom. In the editor:
- add a static text element or an API value (Test API → pick fields);
- drag elements into position; set colour, size and format;
- optionally paint pixels or add animation frames;
- set the view's duration, brightness and overflow mode.
Save. The view appears on the panel within one rotation. Add more views and they auto-rotate.
Maintaining the device
Update the firmware
System → Upload Firmware, choose a firmware
.bin, and upload. The device flashes it and reboots on its own;
the interface waits for it to come back. (Over-the-air espota
updating is disabled in this build — use the browser upload or a serial
flash.)
Restart or factory reset
System → System Status:
- Restart — reboots the device.
- Factory reset — clears saved Wi-Fi and settings and
reopens the
DataPixaccess point. This is the recovery path if you change routers or forget your Wi-Fi password.
Advanced: build & flash from source
DataPix is built with PlatformIO. The web interface is bundled into the firmware automatically.
| Command | Does |
|---|---|
pio run -e esp32-s3-n16r8 | build firmware |
pio run -e esp32-s3-n16r8 -t upload | build and flash over serial |
pio run -e esp32-s3-n16r8 -t uploadfs | upload the filesystem image (only after an erase_flash) |
- Flash over the onboard CH343 USB-UART port. Auto-reset works — no need to hold a BOOT button.
- Serial monitor runs at 115200 baud.
- If a flash fails with
Could not open COMx, close any strayplatformioprocess holding the port and retry. - Optional DHT22 sensor: wire an AM2302 / DHT22 data line to
GPIO2 (or change
-D DHT_PIN=inplatformio.ini) for on-board temperature and humidity. Remove the flag to build without it.