Search found 18 matches

by Edje11
Sat Jan 12, 2019 1:55 pm
Forum: ESP32 Arduino
Topic: ESP32 and AT24C08 EEPROM
Replies: 1
Views: 3521

Re: ESP32 and AT24C08 EEPROM

Hi,

Be sure you have the eeprom in the correct voltage range. You nedd the one that can work from 2.7V.
Here is some code that should work. https://playground.arduino.cc/code/I2CEEPROM
by Edje11
Tue Jan 08, 2019 8:43 pm
Forum: ESP32 Arduino
Topic: esp32 + ws2801 - Need help.
Replies: 8
Views: 10467

Re: esp32 + ws2801 - Need help.

Keep in mind that your led's stips require 5V power supply.
by Edje11
Sun Jan 06, 2019 2:46 pm
Forum: ESP32 Arduino
Topic: i2c display garbage
Replies: 5
Views: 10614

Re: i2c display garbage

The screenupdate sub needs to run on core 1. The code below solved my problem. :D #include <U8x8lib.h> #if CONFIG_FREERTOS_UNICORE #define ARDUINO_RUNNING_CORE 0 #else #define ARDUINO_RUNNING_CORE 1 #endif U8X8_SH1106_128X64_NONAME_HW_I2C u8x8(/* reset=*/ U8X8_PIN_NONE); TaskHandle_t ScreenUpdateHan...
by Edje11
Fri Jan 04, 2019 12:13 pm
Forum: ESP32 Arduino
Topic: i2c display garbage
Replies: 5
Views: 10614

Re: i2c display garbage

Hi Thanks for your reply, First I used a library from Thingpulse https://github.com/ThingPulse/esp8266-oled-ssd1306 After that I changed to U8x8lib that's from the same maker as U8g2lib.h. Also tested the Graphicstest.ino from the U8g2lib, same problem. All the above lib's working fine until you put...
by Edje11
Wed Jan 02, 2019 1:36 pm
Forum: General Discussion
Topic: Esp32 , OpenOCD ,JTAG Error
Replies: 8
Views: 14346

Re: Esp32 , OpenOCD ,JTAG Error

Have a look at my blog to see how to setup jtag in Sloeber (eclipse)
http://evertdekker.com/?p=1191
by Edje11
Wed Jan 02, 2019 10:49 am
Forum: ESP32 Arduino
Topic: ESP32 DEV KIT v4 MODULE WiFi Disconnect Problem
Replies: 4
Views: 6364

Re: ESP32 DEV KIT v4 MODULE WiFi Disconnect Problem

Print the wifi status to see what the problem is. void loop() { if(WiFi.status() != WL_CONNECTED) { Serial.print(WiFi.status()); Serial.print("."); digitalWrite (greenpin,LOW); replay = true; } else if (WiFi.status() == WL_CONNECTED && replay == true ) { Serial.println("IP address: "); Serial.printl...
by Edje11
Tue Jan 01, 2019 4:16 pm
Forum: ESP32 Arduino
Topic: i2c display garbage
Replies: 5
Views: 10614

i2c display garbage

After updating the Arduino-esp32 Core from ?.? to 1.0.0 my i2c SH1106 Oled display doesn't work correct anymore when updating it from a separate task, the output to the display is garbage. It must have something to do with the task were my screen update is running because if I update the screen in t...
by Edje11
Wed Oct 10, 2018 2:53 pm
Forum: Showcase
Topic: Esp32 jtag debugger with Sloeber
Replies: 0
Views: 4254

Esp32 jtag debugger with Sloeber

Jtag debugger with Sloeber "The Arduino Eclipse ide", OpenOcd and low cost Ftdi 2232

Have fun