├── .github └── workflows │ └── package.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dist-template └── install.py.template └── skins └── JSON ├── current_minimal.json.tmpl ├── skin.conf └── weewx.json.tmpl /.github/workflows/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeks99/weewx-json/HEAD/.github/workflows/package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeks99/weewx-json/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeks99/weewx-json/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeks99/weewx-json/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeks99/weewx-json/HEAD/README.md -------------------------------------------------------------------------------- /dist-template/install.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeks99/weewx-json/HEAD/dist-template/install.py.template -------------------------------------------------------------------------------- /skins/JSON/current_minimal.json.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeks99/weewx-json/HEAD/skins/JSON/current_minimal.json.tmpl -------------------------------------------------------------------------------- /skins/JSON/skin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeks99/weewx-json/HEAD/skins/JSON/skin.conf -------------------------------------------------------------------------------- /skins/JSON/weewx.json.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeks99/weewx-json/HEAD/skins/JSON/weewx.json.tmpl --------------------------------------------------------------------------------