| 16 | } |
| 17 | |
| 18 | void IMU_Sensor::end() { |
| 19 | if (!available) return; |
| 20 | |
| 21 | IMU->softReset(); |
| 22 | available = false; |
| 23 | } |
| 24 | |
| 25 | void IMU_Sensor::get_data(int sensorID, byte *data) { |
| 26 | float x, y, z; |
nothing calls this directly
no outgoing calls
no test coverage detected