This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am docmollo on github. | |
* I am docmollo (https://keybase.io/docmollo) on keybase. | |
* I have a public key ASC7O6IfaaevuHTpS1SiP83nY2Yet4IRU4FnBj6arwZPKQo | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This gist contains experimental builds of the NINA firmware for Adafruit products. | |
*** Please DO NOT USE THESE unless you are willing to accept the risks of bricking your hardware *** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To use CircuitPython on the the Adafruit Metro M4 (http://adafru.it/3382) | |
with the HUZZAH32 (http://adafru.it/4172), you'll have to connect the two | |
boards and make a few changes to the esp32spi_simpletest.py code. | |
First, here are the connections that need to be made between the two boards: | |
Metro M4 HUZZAH32 | |
-------- -------- | |
D5 -> 33 | |
D7 -> RST |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import busio | |
import digitalio | |
import board | |
from adafruit_rgb_display import color565 | |
import adafruit_rgb_display.st7735 as st7735 | |
# Setup SPI bus using hardware SPI: | |
spi = busio.SPI(clock=board.SCK, MOSI=board.MOSI, MISO=board.MISO) |