Activity
- Resolved by Krzysztof
82 82 83 83 enum class InputMode { button = 1, sensor = 2, output = 3 }; 84 84 85 boost::shared_ptr<Device> createDevice(Apartment& apartment, HardwareType type, 86 InputMode inputMode = InputMode::button); 85 struct ExtraDeviceOpts { 86 std::optional<InputMode> inputMode; 87 std::optional<uint16_t> revisionId; // aka fw version 88 }; 89 90 boost::shared_ptr<Device> createDevice(Apartment& apartment, HardwareType type, struct ExtraDeviceOpts opts = {}); changed this line in version 2 of the diff
added 2 commits
- Resolved by Krzysztof
mentioned in commit 2f6d6b57