Search found 5 matches

by error105
Sun Apr 05, 2020 4:05 pm
Forum: Hardware
Topic: ESP32S - minimal wiring for uart program
Replies: 1
Views: 4208

Re: ESP32S - minimal wiring for uart program

I change a little my diagram. Is it okay ?

schemat.png
schemat.png (23.82 KiB) Viewed 4141 times
by error105
Sat Apr 04, 2020 2:26 pm
Forum: Hardware
Topic: ESP32S - minimal wiring for uart program
Replies: 1
Views: 4208

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).
Adnotacja 2020-04-04 173744.png
Adnotacja 2020-04-04 173744.png (78.21 KiB) Viewed 4190 times
by error105
Mon Mar 23, 2020 9:10 am
Forum: ESP32 Arduino
Topic: OneButton with ESP8622
Replies: 1
Views: 3734

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...
by error105
Wed Mar 18, 2020 12:03 pm
Forum: ESP32 Arduino
Topic: 2.8 TFT SPI with Touch
Replies: 3
Views: 5665

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 :)
by error105
Wed Mar 18, 2020 8:41 am
Forum: ESP32 Arduino
Topic: 2.8 TFT SPI with Touch
Replies: 3
Views: 5665

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...