Search found 27 matches

by ats3788
Mon Jun 04, 2018 11:12 am
Forum: General Discussion
Topic: What is the right JTAG Debugger for the ESP32
Replies: 5
Views: 11622

What is the right JTAG Debugger for the ESP32

Hello ESP32 friends
I refer my post to this https://esp32.com/viewtopic.php?t=547
But my question is a bit different. I'm looking for a debugger what is compatible to MS Visual Studio VMicro.
by ats3788
Mon Feb 12, 2018 1:51 pm
Forum: ESP32 Arduino
Topic: How can I Create a second ISR for a secod timer
Replies: 1
Views: 8080

How can I Create a second ISR for a secod timer

I could do this with One Timer, but not with more than One how can I do this My approach was /* create a hardware timer */ hw_timer_t * timer0 = NULL; // Timer 0 Setup *************************************************** pinMode(led, OUTPUT); /* Use 1st timer of 4 */ /* 1 tick take 1/(80MHZ/80) = 1us...
by ats3788
Fri Feb 09, 2018 5:45 pm
Forum: ESP32 Arduino
Topic: Looking for a ESP32 TouchScreen Library
Replies: 9
Views: 23177

Re: Looking for a ESP32 TouchScreen Library

What a pitty it does not work :cry:
by ats3788
Thu Feb 08, 2018 7:01 pm
Forum: ESP32 Arduino
Topic: Looking for a ESP32 TouchScreen Library
Replies: 9
Views: 23177

Re: Looking for a ESP32 TouchScreen Library

#include <XPT2046_Touchscreen.h> #include <SPI.h> #define CS_PIN 8 // MOSI=11, MISO=12, SCK=13 //XPT2046_Touchscreen ts(CS_PIN); #define TIRQ_PIN 2 //XPT2046_Touchscreen ts(CS_PIN); // Param 2 - NULL - No interrupts //XPT2046_Touchscreen ts(CS_PIN, 255); // Param 2 - 255 - No interrupts XPT2046_Touc...
by ats3788
Mon Feb 05, 2018 1:10 pm
Forum: ESP32 Arduino
Topic: Looking for a ESP32 TouchScreen Library
Replies: 9
Views: 23177

Looking for a ESP32 TouchScreen Library

Hello friends of the ESP32
This is working for the ESP32, but I could not find a Lib to use the Touchscreen.
https://github.com/MartyMacGyver/ESP32_Adafruit_ILI9341
Does someone know a Library working Touchscreen Lib for the ESP32.
by ats3788
Fri Feb 02, 2018 4:20 pm
Forum: ESP32 Arduino
Topic: Web Server Content with string array
Replies: 2
Views: 4706

Re: Web Server Content with string array

Hi solved the Problem with using sts:string Class and every string has less then 30 chars like std::string HTML_Header[] = { "<!doctype html>", "<html>", "<head>", "<title>Temperature and", " Humititdy Server</title>", "<meta charset= \"UTF-8\">" I don't know if that is working witch char arrays but...
by ats3788
Thu Feb 01, 2018 7:09 pm
Forum: ESP32 Arduino
Topic: Web Server Content with string array
Replies: 2
Views: 4706

Web Server Content with string array

Hello I try to setup a web server Something like this works client.println(HTML_Header[0]); client.println(HTML_Header[1]); client.println(HTML_Header[2]); client.println(HTML_Header[3]); client.println(HTML_Header[4]); In a loop like this it's causing a reboot of the ESP32 for(i=0; i<5; i++) { clie...