{"id":18897824,"url":"https://github.com/aneisch/echo-timer-sync","last_synced_at":"2025-06-17T16:33:13.268Z","repository":{"id":220073217,"uuid":"750682309","full_name":"aneisch/echo-timer-sync","owner":"aneisch","description":"Echo Timer Sync for AppDaemon","archived":false,"fork":false,"pushed_at":"2024-01-31T05:51:38.000Z","size":61,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-15T03:45:21.290Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aneisch.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-01-31T05:23:43.000Z","updated_at":"2024-01-31T05:24:11.000Z","dependencies_parsed_at":"2024-01-31T06:59:25.258Z","dependency_job_id":"d3027ffd-dfe7-48bc-9171-2f95104075ac","html_url":"https://github.com/aneisch/echo-timer-sync","commit_stats":null,"previous_names":["aneisch/echo-timer-sync"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aneisch/echo-timer-sync","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aneisch%2Fecho-timer-sync","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aneisch%2Fecho-timer-sync/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aneisch%2Fecho-timer-sync/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aneisch%2Fecho-timer-sync/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aneisch","download_url":"https://codeload.github.com/aneisch/echo-timer-sync/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aneisch%2Fecho-timer-sync/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260398710,"owners_count":23003027,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T08:39:43.215Z","updated_at":"2025-06-17T16:33:08.256Z","avatar_url":"https://github.com/aneisch.png","language":"Python","funding_links":["https://www.buymeacoffee.com/aneisch"],"categories":[],"sub_categories":[],"readme":"# Echo Timer Sync App\n[![hacs_badge](https://img.shields.io/badge/HACS-Default-orange.svg)](https://github.com/custom-components/hacs)\n\u003cbr\u003e\u003ca href=\"https://www.buymeacoffee.com/aneisch\" target=\"_blank\"\u003e\u003cimg src=\"https://cdn.buymeacoffee.com/buttons/default-black.png\" width=\"150px\" height=\"35px\" alt=\"Buy Me A Coffee\" style=\"height: 35px !important;width: 150px !important;\" \u003e\u003c/a\u003e\n\n_An app to make visual countdown timers via your Amazon Echo devices_\n\n## Installation\n\nThis app is best installed using [HACS](https://github.com/custom-components/hacs), so that you can easily track and download updates. You ***must** also install and configure the [Alexa Media Player](https://github.com/alandtse/alexa_media_player) component in order to load timers from your Amazon Echo devices. \n\nAlternatively, you can download the `echo-timer-sync` directory from inside the `apps` directory here to your local `apps` directory, then add the configuration to enable the `echo_timer_sync` module.\n\n## How it works\n\nWhen the `_next_timer` entity is updated by Alexa Media Player after setting a timer on your Amazon Echo device, this app creates timers in Home Assistant that you can then put on a dashboard to have a visual similar to what an Echo Show would provide. Corresponding timer labels will be set as well in input_text entities.\n\n## Appdaemon App Configuration\n\n```yaml\nKitchen Timer Sync:\n  module: echo_timer_sync\n  class: TimerSync\n  alexa_timer: sensor.kitchen_next_timer\n  timer_prefix: kitchen_alexa\n  timer_count: 5\n```\n\n## App Prerequisites in Home Assistant\n\nYou **must** create `timer` and `input_text` entities in Home Assistant that this app will then populate with your Amazon Echo timer information\n\n```yaml\ntimer:\n  kitchen_alexa_1:\n    name: Kitchen Timer 1\n    duration: \"00:00:00\"\n    restore: true\n  kitchen_alexa_2:\n    name: Kitchen Timer 2\n    duration: \"00:00:00\"\n    restore: true\n  kitchen_alexa_3:\n    name: Kitchen Timer 3\n    duration: \"00:00:00\"\n    restore: true\n  kitchen_alexa_4:\n    name: Kitchen Timer 4\n    duration: \"00:00:00\"\n    restore: true\n  kitchen_alexa_5:\n    name: Kitchen Timer 5\n    duration: \"00:00:00\"\n    restore: true\n\ninput_text:\n  kitchen_alexa_1_name:\n    name: Kitchen Timer 1 Name\n  kitchen_alexa_2_name:\n    name: Kitchen Timer 2 Name\n  kitchen_alexa_3_name:\n    name: Kitchen Timer 3 Name\n  kitchen_alexa_4_name:\n    name: Kitchen Timer 4 Name\n  kitchen_alexa_5_name:\n    name: Kitchen Timer 5 Name\n\n```\n\n\nkey | optional | type | default | description\n-- | -- | -- | -- | --\n`module` | False | string | | The module name of the app.\n`class` | False | string | | The name of the Class.\n`alexa_timer` | False | string | | The entity_id(s) This is the entity from Alexa Media Player that holds timers\n`timer_prefix` | False | string | |This is the prefix to the timer entities you created in HA (see above)\n`timer_count` | True | integer | 1 | This corresponds to the number of timer entities you created in HA \n\n\n## Issues/Feature Requests\n\nPlease feel free to open any issues or feature requests!\n\n![](images/dashboard.png)  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faneisch%2Fecho-timer-sync","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faneisch%2Fecho-timer-sync","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faneisch%2Fecho-timer-sync/lists"}