turtlebot3-burger_150.png
turtlebot3-waffle-pi_150.png
turtlebot3-arm_150.png
walking-y2_150.png
turbot3-multi_150.png
turbot3-dl-ros1_150.png
turbot3-ai.png
turbot3-dl-ros2_150.png
turbot3-slam_150.png
turbot3-arm_150.png
turtlebot4-lite_150.png
turtlebot4-pro_150.png
turbot4-dl_150.png
turbot4-ai_150.png
aidriving-racebot_150.png
aidriving-autodrive_150.png
turtlebot-arm_150.png
openmanipulator-x_150.png
Home » Turbot与Python教程 » Turbot与python编程-实现获取kobuki电池信息

Turbot与python编程-实现获取kobuki电池信息

纠错,疑问,交流: 请进入讨论区请点击进入页面,扫码加入微信群或Q群进行交流

获取最新文章: 扫一扫加入“创客智造”公众号

Turbot与python编程-实现获取kobuki电池信息

说明:

  • 介绍如何实现获取kobuki的电池信息

代码:

  • 参考代码:github
  • 实现代码:
#!/usr/bin/env python
# Monitor the kobuki's battery level

import roslib
import rospy
from kobuki_msgs.msg import SensorState

class kobuki_battery():

	kobuki_base_max_charge = 160

	def __init__(self):
		rospy.init_node("kobuki_battery")		

		#monitor Kobuki's power and charging status.  If an event occurs (low battery, charging, not charging etc) call function SensorPowerEventCallback
	        rospy.Subscriber("/mobile_base/sensors/core",SensorState,self.SensorPowerEventCallback)

		#rospy.spin() tells the program to not exit until you press ctrl + c.  If this wasn't there... it'd subscribe and then immediatly exit (therefore stop "listening" to the thread).
		rospy.spin();


	def SensorPowerEventCallback(self,data):
		rospy.loginfo("Kobuki's battery is now: " + str(round(float(data.battery) / float(self.kobuki_base_max_charge) * 100)) + "%")
		if(int(data.charger) == 0) :
			rospy.loginfo("Not charging at docking station")
		else:
			rospy.loginfo("Charging at docking station")
	

if __name__ == '__main__':
	try:
		kobuki_battery()
	except rospy.ROSInterruptException:
		rospy.loginfo("exception")

演示:

  • 主机,新终端,启动底盘
$ roslaunch turbot_bringup minimal.launch
  • 从机,新终端,启动脚本
$ rosrun turbot_code kobukiBattery.py

纠错,疑问,交流: 请进入讨论区请点击进入页面,扫码加入微信群或Q群进行交流

获取最新文章: 扫一扫加入“创客智造”公众号


标签: turbot与python编程