├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── mos.yml ├── src └── main.c └── tools └── flash-shelly.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaourdt/mgos-to-tasmota/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaourdt/mgos-to-tasmota/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaourdt/mgos-to-tasmota/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaourdt/mgos-to-tasmota/HEAD/README.md -------------------------------------------------------------------------------- /mos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaourdt/mgos-to-tasmota/HEAD/mos.yml -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaourdt/mgos-to-tasmota/HEAD/src/main.c -------------------------------------------------------------------------------- /tools/flash-shelly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaourdt/mgos-to-tasmota/HEAD/tools/flash-shelly.py --------------------------------------------------------------------------------