add 3 bionic drones subscriber
parent
5808443273
commit
623c939094
@ -0,0 +1,114 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
#coding:utf-8
|
||||||
|
import sys
|
||||||
|
import json
|
||||||
|
import paho.mqtt.client as mqtt
|
||||||
|
|
||||||
|
|
||||||
|
from traceback import print_tb
|
||||||
|
import rospy
|
||||||
|
from std_msgs.msg import String
|
||||||
|
from std_msgs.msg import Float64
|
||||||
|
from sensor_msgs.msg import NavSatFix
|
||||||
|
from sensor_msgs.msg import Imu
|
||||||
|
from sensor_msgs.msg import Range
|
||||||
|
from geometry_msgs.msg import Vector3
|
||||||
|
|
||||||
|
mqtt_config = {"host": "140.120.31.133", "port": 1883, "topic": "data/imu"}
|
||||||
|
data ={}
|
||||||
|
# Ros
|
||||||
|
def callBack_imu(IMU):
|
||||||
|
gyro_x=str(IMU.linear_acceleration.x)
|
||||||
|
gyro_y=str(IMU.linear_acceleration.y)
|
||||||
|
gyro_z=str(IMU.linear_acceleration.z)
|
||||||
|
|
||||||
|
accel_x=str(IMU.angular_velocity.x)
|
||||||
|
accel_y=str(IMU.angular_velocity.y)
|
||||||
|
accel_z=str(IMU.angular_velocity.z)
|
||||||
|
|
||||||
|
dataImuUpdate = {"gyro_x": gyro_x, "gyro_y": gyro_y,"gyro_z":gyro_z, "accel_x": accel_x, "accel_y": accel_y, "accel_z": accel_z}
|
||||||
|
data.update(dataImuUpdate)
|
||||||
|
# print ('gyro_x:'+gyro_x+'\n'+'gyro_y:'+gyro_y+'\n'+'gyro_z:'+gyro_z +'\n')
|
||||||
|
# print ('accel_x:'+accel_x+'\n'+'accel_y:'+accel_y+'\n'+'accel_z:'+accel_z +'\n')
|
||||||
|
|
||||||
|
|
||||||
|
def callBack_gps(GPS):
|
||||||
|
lat=str(int(GPS.latitude*10000000))
|
||||||
|
lon=str(int(GPS.longitude*10000000))
|
||||||
|
dataGpsUpdate = {"lat": lat, "lon": lon}
|
||||||
|
data.update(dataGpsUpdate)
|
||||||
|
# dataJsonFormate = json.dumps(data)
|
||||||
|
# mqtt_Pub(message=dataJsonFormate)
|
||||||
|
# print ('lat:'+lat+'\n'+'lon:'+lon+'\n')
|
||||||
|
|
||||||
|
|
||||||
|
def callBack_compass_hdg(Compass):
|
||||||
|
heading = str(int(Compass.data*100))
|
||||||
|
dataGpsUpdate = {"heading": heading}
|
||||||
|
data.update(dataGpsUpdate)
|
||||||
|
dataJsonFormate = json.dumps(data)
|
||||||
|
mqtt_Pub(message=dataJsonFormate)
|
||||||
|
|
||||||
|
|
||||||
|
# def callBack_velocity(velocity):
|
||||||
|
# Vy=str(int(velocity.latitude*100))
|
||||||
|
# Vx=str(int(velocity.longitude*100))
|
||||||
|
# dataGpsUpdate = {"Vx": Vx, "Vy": Vy}
|
||||||
|
# data.update(dataGpsUpdate)
|
||||||
|
# dataJsonFormate = json.dumps(data)
|
||||||
|
# mqtt_Pub(message=dataJsonFormate)
|
||||||
|
|
||||||
|
# MQTT
|
||||||
|
def initialise_clients(clientname):
|
||||||
|
# callback assignment
|
||||||
|
initialise_client = mqtt.Client(clientname, False)
|
||||||
|
initialise_client.topic_ack = []
|
||||||
|
return initialise_client
|
||||||
|
|
||||||
|
|
||||||
|
# publish a message
|
||||||
|
def mqtt_Pub(message, topics = mqtt_config["topic"], waitForAck=False):
|
||||||
|
mid = client.publish(topics, message, 0)[1]
|
||||||
|
# print(f"just published {message} to topic")
|
||||||
|
if waitForAck:
|
||||||
|
while mid not in client.topic_ack:
|
||||||
|
print("wait for ack")
|
||||||
|
time.sleep(0.25)
|
||||||
|
client.topic_ack.remove(mid)
|
||||||
|
|
||||||
|
|
||||||
|
def on_publish(self, userdata, mid):
|
||||||
|
client.topic_ack.append(mid)
|
||||||
|
|
||||||
|
def on_connect(self, userdata, flags, rc):
|
||||||
|
print("Connected with result code " + str(rc))
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
# Mqtt
|
||||||
|
client = initialise_clients("client1")
|
||||||
|
client.on_publish = on_publish
|
||||||
|
client.on_connect = on_connect
|
||||||
|
client.connect(mqtt_config["host"], mqtt_config["port"], 60)
|
||||||
|
client.loop_start()
|
||||||
|
|
||||||
|
# Ros
|
||||||
|
nodeName = 'save_data_py'
|
||||||
|
rospy.init_node(nodeName)
|
||||||
|
|
||||||
|
ros_namespace = ""
|
||||||
|
if not rospy.has_param("namespace"):
|
||||||
|
print("using default namespace")
|
||||||
|
else:
|
||||||
|
rospy.get_param("namespace", ros_namespace)
|
||||||
|
print("using namespace "+ros_namespace)
|
||||||
|
|
||||||
|
ros_namespace="/drone1"
|
||||||
|
# topicName = 'data_topic'
|
||||||
|
# subscriber = rospy.Subscriber('/mavros/imu/data_raw',Imu,callBack_imu) #從topic獲取string再呼叫callback
|
||||||
|
subscriber = rospy.Subscriber(ros_namespace+'/mavros/global_position/global',NavSatFix,callBack_gps) #從topic獲取string再呼叫callback
|
||||||
|
subscriber = rospy.Subscriber(ros_namespace+'/mavros/global_position/compass_hdg',Float64,callBack_compass_hdg) #從topic獲取string再呼叫callback
|
||||||
|
# subscriber = rospy.Subscriber(ros_namespace+'/mavros/leader_velocity',NavSatFix,callBack_velocity) #從topic獲取string再呼叫callback
|
||||||
|
# subscriber = rospy.Subscriber('/mavros/rangefinder/rangefinder',Range,callBack_rng) #從topic獲取string再呼叫callback
|
||||||
|
|
||||||
|
rospy.spin()
|
||||||
@ -1,14 +1,22 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include "yaml-cpp/yaml.h"
|
#include "yaml-cpp/yaml.h"
|
||||||
|
#include <algorithm>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
int main(int argc,char** argv){
|
int main(int argc,char** argv){
|
||||||
|
|
||||||
YAML::Node config = YAML::LoadFile("/home/dodo/ardupilot_ws/src/class_model/src/config.yaml");
|
// YAML::Node config = YAML::LoadFile("/home/dodo/ardupilot_ws/src/class_model/src/config.yaml");
|
||||||
|
|
||||||
|
// cout <<"x:"<<config["routh1"]["x"].as<float>()<<endl;
|
||||||
|
// cout <<"y:"<<config["routh1"]["y"].as<float>()<<endl;
|
||||||
|
|
||||||
|
int ID[3] = {1,2,3};
|
||||||
|
int b = 1;
|
||||||
|
std::array <int,3> a {1,2,3};
|
||||||
|
remove(a.begin(),a.end(),b);
|
||||||
|
std::cout << a[0]<<a[1] <<std::endl;
|
||||||
|
|
||||||
cout <<"x:"<<config["routh1"]["x"].as<float>()<<endl;
|
|
||||||
cout <<"y:"<<config["routh1"]["y"].as<float>()<<endl;
|
|
||||||
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
Loading…
Reference in New Issue