Teensy interface: Difference between revisions
From Rsewiki
No edit summary |
No edit summary |
||
Line 4: | Line 4: | ||
On Raspberry PI 5 (running 64bit OS) Paho Mqtt can be installed with C++ support. | On Raspberry PI 5 (running 64bit OS) Paho Mqtt can be installed with C++ support. | ||
This failed on Raspberry pi 4 (running 32 bit OK - due to Lidar support for YD Lidar S4B) | This failed on Raspberry pi 4 (running 32 bit OK - due to Lidar support for YD Lidar S4B). | ||
However, the C interface API works on Raspberry 32bit OS (Bullseye). | |||
Install: | Install: | ||
Line 32: | Line 34: | ||
allow_anonymous true | allow_anonymous true | ||
Restart | Restart mosquitto to take effect. | ||
sudo service | sudo service mosquitto restart |
Revision as of 11:43, 21 July 2024
Back to Scorpi
Installation packages
On Raspberry PI 5 (running 64bit OS) Paho Mqtt can be installed with C++ support. This failed on Raspberry pi 4 (running 32 bit OK - due to Lidar support for YD Lidar S4B).
However, the C interface API works on Raspberry 32bit OS (Bullseye).
Install:
sudo apt install libpaho-mqtt-dev libpaho-mqttpp-dev mosquitto-dev mosquitto-clients
- in addition to other packages required for normal compile
This should allow the teensy interface to compile.
Documentation MQTT API
For Paho-mqtt, see https://eclipse.dev/paho/files/paho.mqtt.python/html/index.html
Configure Mosquitto
Copy the full option list example to /etc/mosquitto/conf.d/:
sudo cp /usr/share/doc/mosquitto/examples/mosquitto.conf /etc/mosquitto/conf.d/
Uncomment and change in the 'listener' group:
#listener listener 1883
In the security group:
#allow_anonymous false allow_anonymous true
Restart mosquitto to take effect.
sudo service mosquitto restart