Search found 7 matches

by wereworm
Tue Dec 15, 2020 3:02 pm
Forum: Hardware
Topic: OLED display refresh unsuccessful - is it a task problem?
Replies: 2
Views: 3246

Re: OLED display refresh unsuccessful - is it a task problem?

Hi, I implemented a separate "UI Task" that checks frequently for new queue messages and it apparently works quite well. I haven't had any of these fragments anymore.
by wereworm
Sat Dec 05, 2020 6:52 pm
Forum: Hardware
Topic: OLED display refresh unsuccessful - is it a task problem?
Replies: 2
Views: 3246

OLED display refresh unsuccessful - is it a task problem?

Hi, I'm currently working on a small project where I use an ESP32 as a webserver and have a SSD1306 OLED display attached to it using the Adafruit SSD1306 library (via platform io). The screen is supposed to show some information, like the device's name, the IP and a little icon indicating if a clie...
by wereworm
Tue Oct 20, 2020 12:18 pm
Forum: ESP-IDF
Topic: Different results of same code in esp-idf and normal c++
Replies: 5
Views: 4700

Re: Different results of same code in esp-idf and normal c++

This is local variable, which does not exists outside convertUUID() function. It will be randomly overwritten: https://github.com/tagtraeumer/esp-idf-cpp-test/blob/main/esp_test/main/ble.cpp#L40 Hi, yeah maybe this method doesn't look good right now I was just kind of preparing it to use it for mor...
by wereworm
Mon Oct 19, 2020 5:07 pm
Forum: ESP-IDF
Topic: Different results of same code in esp-idf and normal c++
Replies: 5
Views: 4700

Re: Different results of same code in esp-idf and normal c++

Hi, i didnt check all your code, but after quick look at it i see this, maybe not an issue, but should help you a bit with debugging: s_print("%i", test->value[i]); With that code you will print decimal values, but UUIDs are in hex, so 8d == 141 and so on. you can change it to something like this: ...
by wereworm
Mon Oct 19, 2020 1:59 pm
Forum: ESP-IDF
Topic: Different results of same code in esp-idf and normal c++
Replies: 5
Views: 4700

Different results of same code in esp-idf and normal c++

Good Day! First of all , I'm quite new to c++ programming, I only started last year with lots of inactive periods in between. I already implemented a bunch of features for my ESP32 but all based on the arduino framework (platformio). Now I'm trying to reimplement one of my programs to ESP-IDF and th...
by wereworm
Thu Apr 30, 2020 9:04 am
Forum: Hardware
Topic: How to know if ESP wroom 32 is broken?
Replies: 2
Views: 9687

Re: How to know if ESP wroom 32 is broken?

Hello, I finally managed to go deeper into the investigation and all the pins reacted the way you were describing. But it seems there was indeed a problem with the RXD and TXD connections which might caused the problems. i ordered some parts from china the last week which i hope to receive this week...
by wereworm
Sat Apr 18, 2020 9:00 pm
Forum: Hardware
Topic: How to know if ESP wroom 32 is broken?
Replies: 2
Views: 9687

How to know if ESP wroom 32 is broken?

Hi! I wonder how i can easily recognize, whether a ESP 32 is broken or not. Here's my current situation. I've been playing around with several ESP 32 development boards in the past few months and prototyped an application on breadboards using either the esp doit devkit v1 or the az-delivery dev boar...