├── .github ├── FUNDING.yml └── workflows │ ├── ci.yaml │ └── publish.yml ├── .gitignore ├── AUTHORS.md ├── LICENSE ├── README.md ├── STLs ├── Case-2.stl ├── Cover-circles_horizontal.stl ├── Cover-circles_no_logo.stl ├── Cover-circles_vertical.stl └── Cover-scan_herel.stl ├── Schematics ├── Tag Reader Schematics v3.2.fzz ├── Tag Reader Schematics.fzz ├── tag_reader_schematics_v2.png └── tag_reader_schematics_v3.2.png ├── blueprints └── PlayMusicTag.yaml ├── docs ├── cases.jpg ├── inside-case-completed.jpg ├── open-case.jpg ├── tag-ui.gif └── tagreader_services.PNG ├── scripts └── flash ├── static ├── _config.yml └── index.md └── tagreader.yaml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/README.md -------------------------------------------------------------------------------- /STLs/Case-2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/STLs/Case-2.stl -------------------------------------------------------------------------------- /STLs/Cover-circles_horizontal.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/STLs/Cover-circles_horizontal.stl -------------------------------------------------------------------------------- /STLs/Cover-circles_no_logo.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/STLs/Cover-circles_no_logo.stl -------------------------------------------------------------------------------- /STLs/Cover-circles_vertical.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/STLs/Cover-circles_vertical.stl -------------------------------------------------------------------------------- /STLs/Cover-scan_herel.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/STLs/Cover-scan_herel.stl -------------------------------------------------------------------------------- /Schematics/Tag Reader Schematics v3.2.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/Schematics/Tag Reader Schematics v3.2.fzz -------------------------------------------------------------------------------- /Schematics/Tag Reader Schematics.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/Schematics/Tag Reader Schematics.fzz -------------------------------------------------------------------------------- /Schematics/tag_reader_schematics_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/Schematics/tag_reader_schematics_v2.png -------------------------------------------------------------------------------- /Schematics/tag_reader_schematics_v3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/Schematics/tag_reader_schematics_v3.2.png -------------------------------------------------------------------------------- /blueprints/PlayMusicTag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/blueprints/PlayMusicTag.yaml -------------------------------------------------------------------------------- /docs/cases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/docs/cases.jpg -------------------------------------------------------------------------------- /docs/inside-case-completed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/docs/inside-case-completed.jpg -------------------------------------------------------------------------------- /docs/open-case.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/docs/open-case.jpg -------------------------------------------------------------------------------- /docs/tag-ui.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/docs/tag-ui.gif -------------------------------------------------------------------------------- /docs/tagreader_services.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/docs/tagreader_services.PNG -------------------------------------------------------------------------------- /scripts/flash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/scripts/flash -------------------------------------------------------------------------------- /static/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/static/_config.yml -------------------------------------------------------------------------------- /static/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/static/index.md -------------------------------------------------------------------------------- /tagreader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarthomejunkie/tagreader/HEAD/tagreader.yaml --------------------------------------------------------------------------------