- Application which uses mDNS to find devices. The protocol to communicate with the devices is websocket.
- UI contains virtual remote controls which sends hex codes over the websocket. The device interprets the hex codes and fires the corresponding IR signal.
- Code is split between view and controller files.
- View is only UI.
- Controller is for business logic and data models.
- Always extends
ChangeNotifier
.
- Always extends
- Canvas subpackage uses composite pattern which allows easy extension of custom shapes and whatnot.
- Custom shapes must extend
InteractiveItem
.
- Custom shapes must extend
classDiagram
AddRemoteForm --> AddRemoteFormController : renders with
AddRemoteForm --> DeviceListController : discovers devices with
AddRemoteFormController --> RemoteListController : adds to
AddRemoteFormController --> DeviceListController : validates with
DeviceList --> DeviceListController : renders with
DeviceList --> AddRemoteFormController : selects device with
RemoteList --> RemoteListController : renders with
RemoteListController "1" --* "*" RemoteController
RemoteList "1" --* "*" Remote
Remote "1" --> "1" RemoteController : renders with
RemoteController "1" --* "1" RemoteModel
RemoteListController ..|> Persistable
RemoteModel ..|> Persistable
<<mixin>> Persistable
- Increased security to prevent device hacking.
- Increased security to prevent application hacking.
- Let users build their own floor plans.