├── .gitignore ├── .vscode └── tasks.json ├── Create-Linux-Python-venv.sh ├── Create-Windows-Python-venv.ps1 ├── LICENSE ├── README.md ├── esp32-local-iot-gateway ├── diagram.json ├── secrets.yaml ├── test-esp32-device.yaml └── wokwi.toml ├── esp32 ├── diagram.json ├── secrets.yaml ├── test-esp32-device.yaml └── wokwi.toml ├── images └── hello_world.png ├── pico-w ├── diagram.json ├── secrets.yaml ├── test-pico-w-device.yaml └── wokwi.toml ├── screenshots └── screenshot1.png └── secrets.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Create-Linux-Python-venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/Create-Linux-Python-venv.sh -------------------------------------------------------------------------------- /Create-Windows-Python-venv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/Create-Windows-Python-venv.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/README.md -------------------------------------------------------------------------------- /esp32-local-iot-gateway/diagram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/esp32-local-iot-gateway/diagram.json -------------------------------------------------------------------------------- /esp32-local-iot-gateway/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../secrets.yaml -------------------------------------------------------------------------------- /esp32-local-iot-gateway/test-esp32-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/esp32-local-iot-gateway/test-esp32-device.yaml -------------------------------------------------------------------------------- /esp32-local-iot-gateway/wokwi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/esp32-local-iot-gateway/wokwi.toml -------------------------------------------------------------------------------- /esp32/diagram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/esp32/diagram.json -------------------------------------------------------------------------------- /esp32/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../secrets.yaml -------------------------------------------------------------------------------- /esp32/test-esp32-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/esp32/test-esp32-device.yaml -------------------------------------------------------------------------------- /esp32/wokwi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/esp32/wokwi.toml -------------------------------------------------------------------------------- /images/hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/images/hello_world.png -------------------------------------------------------------------------------- /pico-w/diagram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/pico-w/diagram.json -------------------------------------------------------------------------------- /pico-w/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../secrets.yaml -------------------------------------------------------------------------------- /pico-w/test-pico-w-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/pico-w/test-pico-w-device.yaml -------------------------------------------------------------------------------- /pico-w/wokwi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/pico-w/wokwi.toml -------------------------------------------------------------------------------- /screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/screenshots/screenshot1.png -------------------------------------------------------------------------------- /secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-mentor/ESPHome-Device-Sim/HEAD/secrets.yaml --------------------------------------------------------------------------------