unitree_sdk2_python/example/helloworld/user_data.py

10 lines
251 B
Python
Raw Normal View History

2024-04-26 21:26:50 +08:00
from dataclasses import dataclass
from cyclonedds.idl import IdlStruct
# This class defines user data consisting of a float data and a string data
@dataclass
class UserData(IdlStruct, typename="UserData"):
string_data: str
float_data: float