├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md └── lib ├── axp192.py ├── bmp280.py ├── colors.py ├── dht12.py ├── pcf8563.py ├── sgp30.py └── st7789.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandro/micropython-m5stickc-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandro/micropython-m5stickc-plus/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandro/micropython-m5stickc-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandro/micropython-m5stickc-plus/HEAD/README.md -------------------------------------------------------------------------------- /lib/axp192.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandro/micropython-m5stickc-plus/HEAD/lib/axp192.py -------------------------------------------------------------------------------- /lib/bmp280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandro/micropython-m5stickc-plus/HEAD/lib/bmp280.py -------------------------------------------------------------------------------- /lib/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandro/micropython-m5stickc-plus/HEAD/lib/colors.py -------------------------------------------------------------------------------- /lib/dht12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandro/micropython-m5stickc-plus/HEAD/lib/dht12.py -------------------------------------------------------------------------------- /lib/pcf8563.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandro/micropython-m5stickc-plus/HEAD/lib/pcf8563.py -------------------------------------------------------------------------------- /lib/sgp30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandro/micropython-m5stickc-plus/HEAD/lib/sgp30.py -------------------------------------------------------------------------------- /lib/st7789.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandro/micropython-m5stickc-plus/HEAD/lib/st7789.py --------------------------------------------------------------------------------