✨ Enjoying this project? Support our work! ✨
- 📺 Luckfox 10.1 Inch DSI Display
- 📺 Luckfox Pico Ultra W
- 📺 Luckfox Pico WebBee
- 📺 Luckfox Lyra Plus
- 📺 Luckfox Pico Pro/MAX
- 📺 Luckfox Pico Mini B
To clear all SSH known hosts entries:
echo. > %userprofile%\.ssh\known_hostsTo check CPU details, use the following commands:
cat /proc/cpuinfouname -aRun the following commands:
wget --no-check-certificate https://raw.githubusercontent.com/papercodeIN/Embedded_Devices/refs/heads/main/LuckFox/Script/install_mosquitto.shchmod +x install_mosquitto.sh./install_mosquitto.shsystemctl status mosquitto- Start:
sudo systemctl start mosquitto- Stop:
sudo systemctl stop mosquitto- Restart:
sudo systemctl restart mosquitto- Subscribe:
mosquitto_sub -h localhost -t test/topic
- Publish:
mosquitto_pub -h localhost -t test/topic -m "Hello, MQTT!"
If working, you'll see "Hello, MQTT!" in the subscriber terminal. ✅
🎉 Done! Mosquitto is installed and running! 🚀
This guide provides step-by-step instructions to install and run the NanoMQ MQTT broker on a Luckfox Pico Ultra W.
Run the following command to download the NanoMQ .deb package:
wget https://www.emqx.com/en/downloads/nanomq/v0.18.2/nanomq-0.18.2-linux-armhf.debSet the correct ownership to prevent permission errors when installing:
sudo chown _apt nanomq-0.18.2-linux-armhf.debRun the following command to install the downloaded package:
sudo apt install ./nanomq-0.18.2-linux-armhf.debOnce installed, start the NanoMQ broker:
nanomq start -dCheck if NanoMQ is running:
ps aux | grep nanomqIf it's running, you should see an output with nanomq listed.
To modify NanoMQ settings, edit its configuration file:
sudo nano /etc/nanomq.confAfter making changes, restart NanoMQ:
nanomq restartOpen a terminal and run:
mosquitto_sub -h localhost -t test/topicIn another terminal, send a test message:
mosquitto_pub -h localhost -t test/topic -m "Hello, NanoMQ!"If working correctly, the subscriber terminal should display:
Hello, NanoMQ!
To connect external clients, find your device’s IP address:
hostname -I | awk '{print $1}'Use this IP with port 1883 in your MQTT client.
You can now use NanoMQ for MQTT-based IoT applications on the Luckfox Pico Ultra W.
bash <(curl -sL https://raw.githubusercontent.com/node-red/linux-installers/master/deb/update-nodejs-and-nodered)scp python-periphery-master.zip [email protected]:/home/picoscp -r python-periphery-master [email protected]:/home/picocd python-periphery-mastersudo python3 setup.py installpip install python-peripherysudo python3from periphery import GPIO
# GPIO pin number
Write_Pin = 41
Write_GPIO = GPIO(Write_Pin, "out")
# Set GPIO pin high
Write_GPIO.write(True)
# Set GPIO pin low
Write_GPIO.write(False)| 📦 Device Model | 💾 Image Type | 🔗 Download Link |
|---|---|---|
| Luckfox Pico Max | MicroSD Card Image | Link |
| Luckfox Pico | MicroSD Card Image | Link |
| Luckfox Pico Mini A | MicroSD Card Image | Link |
| Luckfox Pico Mini B | MicroSD Card Image | Link |
| Luckfox Pico Pi | EMMC Image | Link |
| Luckfox Pico Pi W | EMMC Image | Link |
| Luckfox Pico Plus | MicroSD Card Image | Link |
| Luckfox Pico Pro | MicroSD Card Image | Link |
| Luckfox Pico Ultra | EMMC Image | Link |
| Luckfox Pico Ultra W | EMMC Image | Link |
| Luckfox Pico WebBee | MicroSD Card Image | Link |
| Luckfox Lyra | MicroSD Card Image | Link |
| Luckfox Lyra Plus | MicroSD Card Image | Link |
| Luckfox Lyra Ultra | EMMC Image | Link |
| Luckfox Lyra Ultra W | EMMC Image | Link |
| Luckfox Lyra Zero W | Generic Ubuntu Image | Link |
| 📞 Contact Method | 🔗 Details |
|---|---|
| Call / WhatsApp | +91-9974477759 |
| Telegram | @fusionautomate |
| [email protected] |
- Run a Python program at startup — quick methods (systemd or rc.local) for Luckfox boards.
- Create Wi‑Fi hotspot on Luckfox Pico Ultra W (Ubuntu) — video: Watch.
- Create Wi‑Fi hotspot on Luckfox Pico Ultra W (Buildroot) — short guide for Buildroot-specific steps.
- WS2812B (addressable LED) control — wiring, Python examples and libraries.
- TensorFlow on Luckfox — feasibility and a minimal example for supported boards.
- I2C on Luckfox — bus usage, device probing and example code.