sends one write packet to hardware and reads the ACK. logs an error if the ACK is missing or invalid. does NOT update the value cache. you'll have to call `read_from_device()` afterwards.
(&self, value: f32)
| 477 | /// does NOT update the value cache. |
| 478 | /// you'll have to call `read_from_device()` afterwards. |
| 479 | pub fn write_to_device(&self, value: f32) { |
| 480 | (self.setter)(self, value) |
| 481 | } |
| 482 | } |
| 483 | |
| 484 | // ─── Feature Registration ──────────────────────────────────────────────────── |
no outgoing calls
no test coverage detected