In order to Alarm Watchdog app to connect to ROS controlled drone you need to install ROS package and run it on the drone itself.
On ROS node must be installed rosbridge-server package
11sudo apt-get install ros-noetic-rosbridge-server
Instead on noetic
use current ROS package rosversion -d
name.
Need to also install few python3 libraries
21pip3 install rospkg autobahn
2pip3 install pymongo[bson]
Then rosbridge web-socket server can be configured in file:
11cat /opt/ros/noetic/share/rosbridge_server/launch/rosbridge_websocket.launch
By default it has 9090 port, but it can be changed and also some authorization can be added if needed.
Before launching service should open firewall to port
41sudo apt install firewalld firewall-config
2sudo firewall-cmd --zone=public --add-port=9090/tcp --permanent
3sudo firewall-cmd --reload
4sudo ufw allow 9090
Then test it, server side using netcat. This is done on Server/ROS node
11nc -l 9090
Client side using telnet (replace IP by server IP) This is done on some other Linux/Mac machine in network
11telnet IP 9090
^ if you can send messages over network then ports are ok, if not then some firewall is preventing it
Best would be to to create permanent linux service, but for more control we advice initially to run rosbridge in linux background screen
11screen -S rosbridge
Then to launch rosbridge service on ROS node:
31source /opt/ros/noetic/setup.bash
2screen -S rosbridge
3roslaunch rosbridge_server rosbridge_websocket.launch
^This will then start running and you can detach from screen
Screens:
31screen -ls (List all of the screen sessions for a user)
2screen -rd ...(name of screen to log into)...
3screen -S ...(new screen name)...
Console management:
21Ctrl+A D (exit screen, program will continue to run)
2Ctrl+A K (kill a screen)
Send test ROS topic from console
xxxxxxxxxx
11rostopic pub -1 /test_topic std_msgs/String "Hello World"