| 12 | static constexpr auto* TAG = "Tab5"; |
| 13 | |
| 14 | static DeviceVector createDevices() { |
| 15 | auto* i2c2 = device_find_by_name("i2c2"); |
| 16 | check(i2c2, "i2c2 not found"); |
| 17 | return { |
| 18 | createPower(), |
| 19 | createDisplay(), |
| 20 | std::make_shared<Tab5Keyboard>(i2c2) |
| 21 | }; |
| 22 | } |
| 23 | |
| 24 | /* |
| 25 | PI4IOE5V6408-0 (0x43) |
nothing calls this directly
no test coverage detected