├── .dockerignore ├── .github ├── dependabot.yml └── workflows │ └── ci-build-and-test.yml ├── .gitignore ├── CodeCasa.sln ├── Dockerfile.automations ├── Dockerfile.dashboard ├── LICENSE ├── README.md ├── img ├── blazor_dashboard_notification_demo.gif ├── nspanel_pro_demo.gif └── phone_notification_demo.gif └── src ├── CodeCasa.AutoGenerated ├── AutomationAttributes.cs ├── AutomationEntities.cs ├── AutomationEntity.cs ├── CodeCasa.AutoGenerated.csproj ├── CoverAttributes.cs ├── CoverEntities.cs ├── CoverEntity.cs ├── Entities.cs ├── Extensions │ ├── GeneratedExtensions.cs │ └── LightEntityExtensionMethods.cs ├── IEntities.cs ├── InputNumberAttributes.cs ├── InputNumberEntities.cs ├── InputNumberEntity.cs ├── InputSelectAttributes.cs ├── InputSelectEntities.cs ├── InputSelectEntity.cs ├── InputSelectEntityExtensionMethods.cs ├── InputSelectSelectOptionParameters.cs ├── LightAttributes.cs ├── LightEntities.cs ├── LightEntity.cs ├── NotifyMobileAppIphoneVanJaneParameters.cs ├── NotifyMobileAppPixel7Parameters.cs ├── NotifyServices.cs ├── NumericSensorAttributes.cs ├── NumericSensorEntity.cs ├── Parameters │ ├── LightToggleParameters.cs │ ├── LightTurnOffParameters.cs │ └── LightTurnOnParameters.cs ├── PersonAttributes.cs ├── PersonEntities.cs ├── PersonEntity.cs ├── SensorEntities.cs ├── WeatherAttributes.cs ├── WeatherEntities.cs └── WeatherEntity.cs ├── CodeCasa.Automations ├── Apps │ ├── Dashboard │ │ └── LivingRoomPanelNavigation.cs │ ├── Lights │ │ └── BackyardLights │ │ │ ├── BackyardCoachLightsEnergySavingNode.cs │ │ │ ├── BackyardLightsEnergySavingNode.cs │ │ │ ├── BackyardStringLightsEnergySavingNode.cs │ │ │ ├── BackyardStringLightsPipeline.cs │ │ │ └── LightStringRoutineNode.cs │ ├── Notifications │ │ ├── DashboardDemoNotifications.cs │ │ ├── OfficeLightsNotifications.cs │ │ └── PhoneDemoNotifications.cs │ └── People │ │ ├── PeopleHomeStateSyncer.cs │ │ └── TurnOffLightsWhenNoOneAwake.cs ├── CodeCasa.Automations.csproj ├── Dockerfile ├── Extensions │ ├── HostBuilderExtensions.cs │ └── ServiceCollectionExtensions.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.example.json └── appsettings.json ├── CodeCasa.CustomEntities.Automation ├── CodeCasa.CustomEntities.Automation.csproj ├── Extensions │ └── ServiceCollectionExtensions.cs ├── Notifications │ ├── Dashboards │ │ ├── JaneDashboardNotifications.cs │ │ ├── JasperDashboardNotifications.cs │ │ ├── LivingRoomPanelDashboardNotifications.cs │ │ └── LivingRoomPanelNotificationConfig.cs │ └── Phones │ │ ├── JanePhoneNotifications.cs │ │ └── JasperPhoneNotifications.cs ├── People │ ├── CompositePersonEntity.cs │ ├── Genders.cs │ ├── Jane.cs │ ├── Jasper.cs │ ├── PeopleEntities.cs │ ├── PersonEntityStates.cs │ ├── PersonStateEntity.cs │ ├── PersonStates.cs │ └── TypeSafePersonEntity.cs └── StateChange.cs ├── CodeCasa.CustomEntities.Core ├── CodeCasa.CustomEntities.Core.csproj ├── Events │ └── Events.cs ├── Extensions │ └── ServiceCollectionExtensions.cs ├── GoogleHome │ ├── Alarm.cs │ ├── GoogleHomeAlarmEntities.cs │ ├── GoogleHomeTimerEntities.cs │ ├── SpeakerAlarmInfo.cs │ ├── SpeakerTimerInfo.cs │ └── Timer.cs ├── InputSelect │ ├── LivingRoomWallPanelView.cs │ ├── TypeSafeInputSelectEntity.cs │ └── TypeSafeInputSelectEntityExtensionMethods.cs ├── Notifications │ └── LivingRoomPanelNotification.cs └── Weather │ ├── ForecastHome.cs │ ├── TypeSafeWeatherEntity.cs │ └── WeatherTypes.cs ├── CodeCasa.Dashboard ├── CodeCasa.Dashboard.csproj ├── Components │ ├── App.razor │ ├── Dashboard │ │ ├── Alarm.razor │ │ ├── Alarms.razor │ │ ├── BackgroundPicture.razor │ │ ├── Clock.razor │ │ ├── Date.razor │ │ ├── GlobalClick.razor │ │ ├── Notifications.razor │ │ ├── ScrollArea.razor │ │ ├── Timer.razor │ │ ├── Timers.razor │ │ └── Weather.razor │ ├── Demo │ │ └── DemoMenu.razor │ ├── Layout │ │ ├── MainLayout.razor │ │ └── MainLayout.razor.css │ ├── Pages │ │ └── Dashboard.razor │ ├── Routes.razor │ └── _Imports.razor ├── Extensions │ ├── DateTimeExtensions.cs │ ├── ServiceCollectionExtensions.cs │ ├── StringExtensions.cs │ └── TimeSpanExtensions.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Resolvers │ ├── MudIcons.cs │ └── WeatherIcons.cs ├── ViewModels │ ├── AlarmVm.cs │ ├── LightEntityVm.cs │ ├── NotificationVm.cs │ └── TimerVm.cs ├── appsettings.Development.example.json ├── appsettings.json └── wwwroot │ ├── app.css │ ├── favicon.png │ ├── js │ └── globalClickHandler.js │ └── pics │ ├── 1015-480x480.jpg │ ├── 1016-480x480.jpg │ ├── 110-480x480.jpg │ ├── 43-480x480.jpg │ └── 49-480x480.jpg ├── CodeCasa.NetDaemon.Utilities ├── CodeCasa.NetDaemon.Utilities.csproj ├── ColorModes.cs ├── Extensions │ ├── ColorExtensions.cs │ ├── EntityExtensions.cs │ ├── EventObservableExtensions.cs │ ├── LightEntityExtensions.cs │ └── LightParametersExtensions.cs └── LightParameters.cs └── CodeCasa.Shared ├── CodeCasa.Shared.csproj └── Extensions └── DictionaryExtensions.cs /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci-build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/.github/workflows/ci-build-and-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/.gitignore -------------------------------------------------------------------------------- /CodeCasa.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/CodeCasa.sln -------------------------------------------------------------------------------- /Dockerfile.automations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/Dockerfile.automations -------------------------------------------------------------------------------- /Dockerfile.dashboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/Dockerfile.dashboard -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/README.md -------------------------------------------------------------------------------- /img/blazor_dashboard_notification_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/img/blazor_dashboard_notification_demo.gif -------------------------------------------------------------------------------- /img/nspanel_pro_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/img/nspanel_pro_demo.gif -------------------------------------------------------------------------------- /img/phone_notification_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/img/phone_notification_demo.gif -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/AutomationAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/AutomationAttributes.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/AutomationEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/AutomationEntities.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/AutomationEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/AutomationEntity.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/CodeCasa.AutoGenerated.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/CodeCasa.AutoGenerated.csproj -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/CoverAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/CoverAttributes.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/CoverEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/CoverEntities.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/CoverEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/CoverEntity.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/Entities.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/Extensions/GeneratedExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/Extensions/GeneratedExtensions.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/Extensions/LightEntityExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/Extensions/LightEntityExtensionMethods.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/IEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/IEntities.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/InputNumberAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/InputNumberAttributes.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/InputNumberEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/InputNumberEntities.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/InputNumberEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/InputNumberEntity.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/InputSelectAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/InputSelectAttributes.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/InputSelectEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/InputSelectEntities.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/InputSelectEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/InputSelectEntity.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/InputSelectEntityExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/InputSelectEntityExtensionMethods.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/InputSelectSelectOptionParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/InputSelectSelectOptionParameters.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/LightAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/LightAttributes.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/LightEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/LightEntities.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/LightEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/LightEntity.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/NotifyMobileAppIphoneVanJaneParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/NotifyMobileAppIphoneVanJaneParameters.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/NotifyMobileAppPixel7Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/NotifyMobileAppPixel7Parameters.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/NotifyServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/NotifyServices.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/NumericSensorAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/NumericSensorAttributes.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/NumericSensorEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/NumericSensorEntity.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/Parameters/LightToggleParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/Parameters/LightToggleParameters.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/Parameters/LightTurnOffParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/Parameters/LightTurnOffParameters.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/Parameters/LightTurnOnParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/Parameters/LightTurnOnParameters.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/PersonAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/PersonAttributes.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/PersonEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/PersonEntities.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/PersonEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/PersonEntity.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/SensorEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/SensorEntities.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/WeatherAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/WeatherAttributes.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/WeatherEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/WeatherEntities.cs -------------------------------------------------------------------------------- /src/CodeCasa.AutoGenerated/WeatherEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.AutoGenerated/WeatherEntity.cs -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Apps/Dashboard/LivingRoomPanelNavigation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Apps/Dashboard/LivingRoomPanelNavigation.cs -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Apps/Lights/BackyardLights/BackyardCoachLightsEnergySavingNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Apps/Lights/BackyardLights/BackyardCoachLightsEnergySavingNode.cs -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Apps/Lights/BackyardLights/BackyardLightsEnergySavingNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Apps/Lights/BackyardLights/BackyardLightsEnergySavingNode.cs -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Apps/Lights/BackyardLights/BackyardStringLightsEnergySavingNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Apps/Lights/BackyardLights/BackyardStringLightsEnergySavingNode.cs -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Apps/Lights/BackyardLights/BackyardStringLightsPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Apps/Lights/BackyardLights/BackyardStringLightsPipeline.cs -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Apps/Lights/BackyardLights/LightStringRoutineNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Apps/Lights/BackyardLights/LightStringRoutineNode.cs -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Apps/Notifications/DashboardDemoNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Apps/Notifications/DashboardDemoNotifications.cs -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Apps/Notifications/OfficeLightsNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Apps/Notifications/OfficeLightsNotifications.cs -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Apps/Notifications/PhoneDemoNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Apps/Notifications/PhoneDemoNotifications.cs -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Apps/People/PeopleHomeStateSyncer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Apps/People/PeopleHomeStateSyncer.cs -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Apps/People/TurnOffLightsWhenNoOneAwake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Apps/People/TurnOffLightsWhenNoOneAwake.cs -------------------------------------------------------------------------------- /src/CodeCasa.Automations/CodeCasa.Automations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/CodeCasa.Automations.csproj -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Dockerfile -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Extensions/HostBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Extensions/HostBuilderExtensions.cs -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Program.cs -------------------------------------------------------------------------------- /src/CodeCasa.Automations/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/CodeCasa.Automations/appsettings.Development.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/appsettings.Development.example.json -------------------------------------------------------------------------------- /src/CodeCasa.Automations/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Automations/appsettings.json -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/CodeCasa.CustomEntities.Automation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/CodeCasa.CustomEntities.Automation.csproj -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/Notifications/Dashboards/JaneDashboardNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/Notifications/Dashboards/JaneDashboardNotifications.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/Notifications/Dashboards/JasperDashboardNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/Notifications/Dashboards/JasperDashboardNotifications.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/Notifications/Dashboards/LivingRoomPanelDashboardNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/Notifications/Dashboards/LivingRoomPanelDashboardNotifications.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/Notifications/Dashboards/LivingRoomPanelNotificationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/Notifications/Dashboards/LivingRoomPanelNotificationConfig.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/Notifications/Phones/JanePhoneNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/Notifications/Phones/JanePhoneNotifications.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/Notifications/Phones/JasperPhoneNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/Notifications/Phones/JasperPhoneNotifications.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/People/CompositePersonEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/People/CompositePersonEntity.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/People/Genders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/People/Genders.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/People/Jane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/People/Jane.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/People/Jasper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/People/Jasper.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/People/PeopleEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/People/PeopleEntities.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/People/PersonEntityStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/People/PersonEntityStates.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/People/PersonStateEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/People/PersonStateEntity.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/People/PersonStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/People/PersonStates.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/People/TypeSafePersonEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Automation/People/TypeSafePersonEntity.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Automation/StateChange.cs: -------------------------------------------------------------------------------- 1 | namespace CodeCasa.CustomEntities.Automation; 2 | 3 | public record StateChange(T Old, T New); -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/CodeCasa.CustomEntities.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/CodeCasa.CustomEntities.Core.csproj -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/Events/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/Events/Events.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/GoogleHome/Alarm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/GoogleHome/Alarm.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/GoogleHome/GoogleHomeAlarmEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/GoogleHome/GoogleHomeAlarmEntities.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/GoogleHome/GoogleHomeTimerEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/GoogleHome/GoogleHomeTimerEntities.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/GoogleHome/SpeakerAlarmInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/GoogleHome/SpeakerAlarmInfo.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/GoogleHome/SpeakerTimerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/GoogleHome/SpeakerTimerInfo.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/GoogleHome/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/GoogleHome/Timer.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/InputSelect/LivingRoomWallPanelView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/InputSelect/LivingRoomWallPanelView.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/InputSelect/TypeSafeInputSelectEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/InputSelect/TypeSafeInputSelectEntity.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/InputSelect/TypeSafeInputSelectEntityExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/InputSelect/TypeSafeInputSelectEntityExtensionMethods.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/Notifications/LivingRoomPanelNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/Notifications/LivingRoomPanelNotification.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/Weather/ForecastHome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/Weather/ForecastHome.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/Weather/TypeSafeWeatherEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/Weather/TypeSafeWeatherEntity.cs -------------------------------------------------------------------------------- /src/CodeCasa.CustomEntities.Core/Weather/WeatherTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.CustomEntities.Core/Weather/WeatherTypes.cs -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/CodeCasa.Dashboard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/CodeCasa.Dashboard.csproj -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/App.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Dashboard/Alarm.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Dashboard/Alarm.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Dashboard/Alarms.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Dashboard/Alarms.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Dashboard/BackgroundPicture.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Dashboard/BackgroundPicture.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Dashboard/Clock.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Dashboard/Clock.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Dashboard/Date.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Dashboard/Date.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Dashboard/GlobalClick.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Dashboard/GlobalClick.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Dashboard/Notifications.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Dashboard/Notifications.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Dashboard/ScrollArea.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Dashboard/ScrollArea.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Dashboard/Timer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Dashboard/Timer.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Dashboard/Timers.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Dashboard/Timers.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Dashboard/Weather.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Dashboard/Weather.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Demo/DemoMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Demo/DemoMenu.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Layout/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Layout/MainLayout.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Layout/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Layout/MainLayout.razor.css -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Pages/Dashboard.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Pages/Dashboard.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/Routes.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/Routes.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Components/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Components/_Imports.razor -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Extensions/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Extensions/DateTimeExtensions.cs -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Extensions/TimeSpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Extensions/TimeSpanExtensions.cs -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Program.cs -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Resolvers/MudIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Resolvers/MudIcons.cs -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/Resolvers/WeatherIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/Resolvers/WeatherIcons.cs -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/ViewModels/AlarmVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/ViewModels/AlarmVm.cs -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/ViewModels/LightEntityVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/ViewModels/LightEntityVm.cs -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/ViewModels/NotificationVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/ViewModels/NotificationVm.cs -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/ViewModels/TimerVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/ViewModels/TimerVm.cs -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/appsettings.Development.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/appsettings.Development.example.json -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/appsettings.json -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/wwwroot/app.css -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/wwwroot/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/wwwroot/favicon.png -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/wwwroot/js/globalClickHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/wwwroot/js/globalClickHandler.js -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/wwwroot/pics/1015-480x480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/wwwroot/pics/1015-480x480.jpg -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/wwwroot/pics/1016-480x480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/wwwroot/pics/1016-480x480.jpg -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/wwwroot/pics/110-480x480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/wwwroot/pics/110-480x480.jpg -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/wwwroot/pics/43-480x480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/wwwroot/pics/43-480x480.jpg -------------------------------------------------------------------------------- /src/CodeCasa.Dashboard/wwwroot/pics/49-480x480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Dashboard/wwwroot/pics/49-480x480.jpg -------------------------------------------------------------------------------- /src/CodeCasa.NetDaemon.Utilities/CodeCasa.NetDaemon.Utilities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.NetDaemon.Utilities/CodeCasa.NetDaemon.Utilities.csproj -------------------------------------------------------------------------------- /src/CodeCasa.NetDaemon.Utilities/ColorModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.NetDaemon.Utilities/ColorModes.cs -------------------------------------------------------------------------------- /src/CodeCasa.NetDaemon.Utilities/Extensions/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.NetDaemon.Utilities/Extensions/ColorExtensions.cs -------------------------------------------------------------------------------- /src/CodeCasa.NetDaemon.Utilities/Extensions/EntityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.NetDaemon.Utilities/Extensions/EntityExtensions.cs -------------------------------------------------------------------------------- /src/CodeCasa.NetDaemon.Utilities/Extensions/EventObservableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.NetDaemon.Utilities/Extensions/EventObservableExtensions.cs -------------------------------------------------------------------------------- /src/CodeCasa.NetDaemon.Utilities/Extensions/LightEntityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.NetDaemon.Utilities/Extensions/LightEntityExtensions.cs -------------------------------------------------------------------------------- /src/CodeCasa.NetDaemon.Utilities/Extensions/LightParametersExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.NetDaemon.Utilities/Extensions/LightParametersExtensions.cs -------------------------------------------------------------------------------- /src/CodeCasa.NetDaemon.Utilities/LightParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.NetDaemon.Utilities/LightParameters.cs -------------------------------------------------------------------------------- /src/CodeCasa.Shared/CodeCasa.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Shared/CodeCasa.Shared.csproj -------------------------------------------------------------------------------- /src/CodeCasa.Shared/Extensions/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevJasperNL/CodeCasa/HEAD/src/CodeCasa.Shared/Extensions/DictionaryExtensions.cs --------------------------------------------------------------------------------