1234567891011121314151617181920212223242526 |
- package main
- import (
- "github.com/bluenviron/goroslib/v2/pkg/msgs/std_msgs"
- )
- func Topic() string {
- return "/obstacle_detection"
- }
- func Label() string {
- return "obstacledetection"
- }
- func Rule(data *std_msgs.UInt8) string {
-
- if data.Data == 3 {
- return "obstacledetection"
- }
- return ""
- }
|