-
Notifications
You must be signed in to change notification settings - Fork 7.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Arduino board support/definition for TTGO T1 (v1.3+) #2740
Comments
you just call check |
Thanks @luc-github |
There is also the i2c pins, the built-in LED is on pin 22 and from my experience causes problems for i2c on that default pin. |
Reopening, since having a board definition file would probably still be a good thing. |
I'll see if I can create a variant this weekend for this. |
Submitted a PR for the board definition, opted for override SS/MISO/MOSI/SCK with the SD defaults to make it easier for end users. SS needs to be overridden for all SPI devices usually anyway so it doesn't hurt to share the other pins. |
A board variant for TTGO-T1 V1.3 is needed.
TTGO-T1 V1.3 is a board based on ESP32 with a TF (microSD) card slot on the board. It is similar to the existing
hardware/esp32/1.0.2/variants/ttgo-lora32-v1/pins_arduino.h
but instead of LoRa it has microSD on board.Looking at the pinout diagram my question is, how can we get
SD.begin()
to use GPIO13 for CS, GPIO15 for MOSI, GPIO2 for MISO, GPIO14 for SCKwhile keeping, for all other devices,
so that the microSD card can be used while other SPI devices can still be attached to the broken out pins?
The text was updated successfully, but these errors were encountered: