├── .gitignore ├── README.md ├── _locales ├── de │ ├── pxt-calliope-esp-jsdoc-strings.json │ └── pxt-calliope-esp-strings.json ├── pxt-calliope-esp-jsdoc-strings.json └── pxt-calliope-esp-strings.json ├── esp8266.ts ├── example.png ├── example.ts ├── pxt.json ├── tests.ts ├── tsconfig.json ├── unpack.py ├── wiring.graffle ├── data.plist └── image2.png └── wiring.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/README.md -------------------------------------------------------------------------------- /_locales/de/pxt-calliope-esp-jsdoc-strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/_locales/de/pxt-calliope-esp-jsdoc-strings.json -------------------------------------------------------------------------------- /_locales/de/pxt-calliope-esp-strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/_locales/de/pxt-calliope-esp-strings.json -------------------------------------------------------------------------------- /_locales/pxt-calliope-esp-jsdoc-strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/_locales/pxt-calliope-esp-jsdoc-strings.json -------------------------------------------------------------------------------- /_locales/pxt-calliope-esp-strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/_locales/pxt-calliope-esp-strings.json -------------------------------------------------------------------------------- /esp8266.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/esp8266.ts -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/example.png -------------------------------------------------------------------------------- /example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/example.ts -------------------------------------------------------------------------------- /pxt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/pxt.json -------------------------------------------------------------------------------- /tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/tests.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/unpack.py -------------------------------------------------------------------------------- /wiring.graffle/data.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/wiring.graffle/data.plist -------------------------------------------------------------------------------- /wiring.graffle/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/wiring.graffle/image2.png -------------------------------------------------------------------------------- /wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliope-mini/pxt-calliope-esp/HEAD/wiring.png --------------------------------------------------------------------------------