| 86 | }; |
| 87 | |
| 88 | std::shared_ptr<PowerDevice> createPower() { |
| 89 | auto* m5pm1 = device_find_by_name("m5pm1"); |
| 90 | if (m5pm1 == nullptr) { |
| 91 | LOG_E(TAG, "m5pm1 device not found"); |
| 92 | } |
| 93 | return std::make_shared<StickS3Power>(m5pm1); |
| 94 | } |
no test coverage detected