Body Control Module state.
| 192 | |
| 193 | @dataclass |
| 194 | class BodyControlState: |
| 195 | """Body Control Module state.""" |
| 196 | |
| 197 | headlights: bool = False |
| 198 | high_beams: bool = False |
| 199 | turn_left: bool = False |
| 200 | turn_right: bool = False |
| 201 | hazards: bool = False |
| 202 | door_fl: bool = False # True = open |
| 203 | door_fr: bool = False |
| 204 | door_rl: bool = False |
| 205 | door_rr: bool = False |
| 206 | trunk: bool = False |
| 207 | |
| 208 | |
| 209 | @dataclass |