| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
✨ Enjoying this project? Support our work! ✨
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 mosquittosudo systemctl start mosquittosudo systemctl stop mosquittosudo systemctl restart mosquittomosquitto_sub -h localhost -t test/topicmosquitto_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 pico@172.32.0.70:/home/picoscp -r python-periphery-master pico@172.32.0.70:/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)$\color{Orange}\Huge{\textbf{Luckfox Board Ubuntu Images}}$
| 📦 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 |
| eng.innovativ@gmail.com |
| Back | FazBrowse Home | New Git URL |