(self, value: float)
| 407 | return list(header + payload + bytes([0x00, 0x00])) |
| 408 | |
| 409 | def _pack_float(self, value: float) -> bytes: |
| 410 | return struct.pack("<f", value) |
| 411 | |
| 412 | def test_attitude_message(self): |
| 413 | # Message ID 30: time_boot_ms(4) + roll(4) + pitch(4) + yaw(4) + ... |
no outgoing calls
no test coverage detected