I change a little my diagram. Is it okay ?
Search found 5 matches
- Sun Apr 05, 2020 4:05 pm
- Forum: Hardware
- Topic: ESP32S - minimal wiring for uart program
- Replies: 1
- Views: 4551
- Sat Apr 04, 2020 2:26 pm
- Forum: Hardware
- Topic: ESP32S - minimal wiring for uart program
- Replies: 1
- Views: 4551
ESP32S - minimal wiring for uart program
Hi, i just write minimal wiring for ESP32S, i want automatic go into boot mode without any buttons.
I want to ask u, that this wiring is correct ? After program i will use OTA. It will be dual PIR sensor (so i use extra 2 input in ESP32S).
I want to ask u, that this wiring is correct ? After program i will use OTA. It will be dual PIR sensor (so i use extra 2 input in ESP32S).
- Mon Mar 23, 2020 9:10 am
- Forum: ESP32 Arduino
- Topic: OneButton with ESP8622
- Replies: 1
- Views: 4232
OneButton with ESP8622
Hi, i have problem with OneButton.h library :( There is my code: #include "OneButton.h" OneButton button1(0, false); void setup() { button1.attachClick(click1); } void loop() { button1.tick(); } void click1() { } And error code from Arduino: Arduino:1.8.12 (Windows Store 1.8.33.0) (Windows 10), Płyt...
- Wed Mar 18, 2020 12:03 pm
- Forum: ESP32 Arduino
- Topic: 2.8 TFT SPI with Touch
- Replies: 3
- Views: 6373
Re: 2.8 TFT SPI with Touch
T_DO, T_DIN, T_CLK i dont know where i shuld wire.
T_CS to CS pin i know
T_CS to CS pin i know
- Wed Mar 18, 2020 8:41 am
- Forum: ESP32 Arduino
- Topic: 2.8 TFT SPI with Touch
- Replies: 3
- Views: 6373
2.8 TFT SPI with Touch
Hi, i just buy 2.8 TFT screen that have touch screen. I use SPI, but im dont know which library i should use for my touch screen and where i shoul connect pins. #include "SPI.h" #include "Adafruit_GFX.h" #include "Adafruit_ILI9341.h" Adafruit_ILI9341 tft = Adafruit_ILI9341(2, 4, 21, 18, 15); void se...