├── .github └── workflows │ ├── codespell-ignore-words-list.txt │ └── repo_build.yaml ├── .gitignore ├── LICENSE ├── README.md ├── esp8266-crypto.ino └── images ├── appl_demo.jpg ├── btc_demo.jpg ├── eth_demo.jpg ├── gif_demo.gif ├── tsla_demo.jpg └── xlm_demo.jpg /.github/workflows/codespell-ignore-words-list.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/workflows/repo_build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorwalsh/esp8266-crypto/HEAD/.github/workflows/repo_build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorwalsh/esp8266-crypto/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorwalsh/esp8266-crypto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorwalsh/esp8266-crypto/HEAD/README.md -------------------------------------------------------------------------------- /esp8266-crypto.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorwalsh/esp8266-crypto/HEAD/esp8266-crypto.ino -------------------------------------------------------------------------------- /images/appl_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorwalsh/esp8266-crypto/HEAD/images/appl_demo.jpg -------------------------------------------------------------------------------- /images/btc_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorwalsh/esp8266-crypto/HEAD/images/btc_demo.jpg -------------------------------------------------------------------------------- /images/eth_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorwalsh/esp8266-crypto/HEAD/images/eth_demo.jpg -------------------------------------------------------------------------------- /images/gif_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorwalsh/esp8266-crypto/HEAD/images/gif_demo.gif -------------------------------------------------------------------------------- /images/tsla_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorwalsh/esp8266-crypto/HEAD/images/tsla_demo.jpg -------------------------------------------------------------------------------- /images/xlm_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorwalsh/esp8266-crypto/HEAD/images/xlm_demo.jpg --------------------------------------------------------------------------------