灯效API
灯效API能完全控制整机104颗灯珠,能改变灯效的所有颜色和渐变等效果
API明细
前灯灯效控制
功能概述:控制前灯灯效
Service:interaction_manager/light_control/head_light_control_srv
Msg type:tita_interaction_msgs/srv/HeadLightControlSrv
命令示例:
控制:ros2 service call /
[namespace]/interaction_manager/light_control/head_light_control_srv tita_interaction_msgs/srv/HeadLightControlSrv "{head_light_control: {is_control: true, select_light_effect: 0, rgbl_value: [0xff00ff00, 0xff00ff00, 0xff00ff00, 0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0x00000000]}}"
取值范围:Bool is_control, uin8_t select_light_effect, uint32 rgbl_value[48]
尾灯灯效控制
功能概述:控制后灯效
Service:interaction_manager/light_control/tail_light_control_srv
Msg Type:tita_interaction_msgs/srv/TailLightControlSrv
命令示例:
控制:ros2 service call /[namespace]/interaction_manager/light_control/tail_light_control_srv tita_interaction_msgs/srv/TailLightControlSrv "{tail_light_control: {is_control: true, select_light_effect: 0, rgbl_value: [0xff00ff00, 0xff00ff00, 0xff00ff00, 0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00,0xff00ff00, 0xff00ff00, 0xff00ff00]}}"
取值范围:Bool is_control,,uint8_t select_light_effect,uin32_t rgbl_value[36]
腿灯灯效控制
功能概述:控制腿部灯效
Service:左腿 interaction_manager/light_control/left_leg_light_control_srv
右腿 interaction_manager/light_control/right_leg_light_control_srv
Msg Type:左腿 tita_interaction_msgs/srv/LegLightControlSrv
右腿 tita_interaction_msgs/srv/LegLightControlSrv
命令示例:
控制:左腿
ros2 service call /[namespace]/interaction_manager/light_control/left_leg_light_control_srv tita_interaction_msgs/srv/LegLightControlSrv "{leg_light_control: {is_control: true, select_light_effect: 0, rgb_value: [0xffff00ff, 0xff00ffff, 0x00ffffff,0xffff00ff, 0xff00ffff, 0x00ffffff,0xffff00ff, 0xff00ffff, 0x00ffffff,0xffff00ff]}}"
右腿
ros2 service call /[namespace]/interaction_manager/light_control/right_leg_light_control_srv tita_interaction_msgs/srv/LegLightControlSrv "{leg_light_control: {is_control: true, select_light_effect: 0, rgb_value: [0xffff00ff, 0xff00ffff, 0x00ffffff,0xffff00ff, 0xff00ffff, 0x00ffffff,0xffff00ff, 0xff00ffff, 0x00ffffff,0xffff00ff]}}"
取值范围:uint8 select_leg_board,bool is_control,uint8 select_light_effect, uint32[10] rgb_value
灯光开关
功能概述:能控制整机的灯板开关
Service:interaction_manager/light_control/light_power_switch_srv
Msg Type:tita_interaction_msgs/srv/LightPowerSwitchSrv
命令示例:
控制:ros2 service call /[namespace]/interaction_manager/light_control/light_power_switch_srv tita_interaction_msgs/srv/LightPowerSwitchSrv "{light_power_switch: {is_head_light_power_on: true, is_tail_light_power_on: true, is_left_light_power_on: true, is_right_light_power_on: true}}"
取值范围:
bool is_head_light_power_on
bool is_tail_light_power_on
bool is_left_light_power_on
bool is_right_light_power_on
整机灯板状态机控制
功能概述:控制整机灯板状态机的状态指向
Topic:interaction/light_control/light_fsm_control
Msg Type:tita_interaction_msgs::msg::LightFsmControl
命令示例:
控制:ros2 topic pub /
[namespace]/interaction/light_control/light_fsm_control tita_interaction_msgs/msg/LightFsmControl "{head_light_fsm: 1, tail_light_fsm: 1, left_leg_light_fsm: 1, right_leg_light_fsm: 1, head_fsm_lock: false, tail_fsm_lock: false, left_leg_fsm_lock: false, right_leg_fsm_lock: false}" -1
查询:ros2 topic echo /
[namespace]/interaction/light_control/light_fsm_control tita_interaction_msgs/msg/LightFsmControl
取值范围:
head_light_fsm,tail_light_fsm,left_leg_light_fsm,right_leg_fsm取值均为0~255
head_fsm_lock,tail_fsm_lock,left_fsm_lock,right_fsm_lock均是bool型
Last updated