summaryrefslogtreecommitdiffstats
path: root/makefu
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2022-07-15 16:40:11 +0200
committermakefu <github@syntax-fehler.de>2022-07-15 16:40:16 +0200
commit27f4f6d6dd379e6421c270b1c16dafa00814b579 (patch)
tree5822ce97f372aa8516973e92290afbc6e9e8667d /makefu
parenta208a3a19178a6e61c1cb2430e903cbd6dc93529 (diff)
ma ham/project-tracker: init
Diffstat (limited to 'makefu')
-rw-r--r--makefu/2configs/home/ham/automation/project_tracker.nix68
1 files changed, 68 insertions, 0 deletions
diff --git a/makefu/2configs/home/ham/automation/project_tracker.nix b/makefu/2configs/home/ham/automation/project_tracker.nix
new file mode 100644
index 00000000..cb279b2f
--- /dev/null
+++ b/makefu/2configs/home/ham/automation/project_tracker.nix
@@ -0,0 +1,68 @@
+{ lib, ... }:
+# uses:
+#
+let
+ at_work = "input_boolean.felix_at_work";
+ dice_action = "sensor.arbeitszimmer_cube_action";
+ project_sensor = "sensor.felix_project";
+ hlib = import ../lib;
+ say = hlib.say.office;
+ sides = [ "BDK" "LBS6" "random" "BNO" "CyberShield" "ILBS" ];
+ hist_stat = state: {
+ platform = "history_stats";
+ name = "Felix Project ${state}";
+ entity_id = project_sensor;
+ inherit state;
+ type = "time";
+ start = "{{ now().replace(hour=0, minute=0, second=0) }}";
+ end = "{{ now() }}";
+ };
+
+in
+ {
+ services.home-assistant.config.sensor = map hist_stat (sides ++ ["not at work" "unknown"]);
+ services.home-assistant.config.automation = [
+ { alias = "Felix Project Change";
+ trigger =
+ {
+ platform = "state";
+ entity_id = project_sensor;
+ # ignore login and log out
+ not_from = [ "not at work" ];
+ not_to = [ "not at work" ];
+ };
+
+ action = (say "Wechsel auf Projekt {{ trigger.to_state.state }}");
+ }
+ ];
+ services.home-assistant.config.template = [
+ {
+ trigger = [
+ {
+ platform = "state";
+ entity_id = at_work;
+ }
+ {
+ platform = "state";
+ attribute = "side";
+ entity_id = dice_action;
+ not_from = "";
+ }
+ ];
+ sensor = [
+ { name = "Felix Project";
+ state = ''
+ {% set at_work = states('${at_work}') == 'on' %}
+ {% set side = state_attr('${dice_action}','side') %}
+ {% if not at_work %}not at work
+ '' + (lib.concatImapStringsSep "\n" (i: project:
+ "{% elif side == ${toString (i - 1)} %}${project}") sides) +
+ ''
+ {% else %}unknown
+ {% endif %}
+ '';
+ }
+ ];
+ }
+ ];
+ }