Search found 5 matches
- Sat Jun 05, 2021 10:23 am
- Forum: General Discussion
- Topic: Strange errors with TFT_eSPI
- Replies: 4
- Views: 3839
Re: Strange errors with TFT_eSPI
No, ...
- Fri Jun 04, 2021 10:10 am
- Forum: General Discussion
- Topic: Strange errors with TFT_eSPI
- Replies: 4
- Views: 3839
Re: Strange errors with TFT_eSPI
Yes, sorry for the [10]. That was from earlier experiments.
My solution was to change the order from:
int Drehmom[10];
int DrehmomPointer;
to
int DrehmomPointer;
int Drehmom[10];
Now it works, but i don't know why...
My solution was to change the order from:
int Drehmom[10];
int DrehmomPointer;
to
int DrehmomPointer;
int Drehmom[10];
Now it works, but i don't know why...
- Wed Jun 02, 2021 1:40 pm
- Forum: General Discussion
- Topic: Strange errors with TFT_eSPI
- Replies: 4
- Views: 3839
Strange errors with TFT_eSPI
I want to show values an an ESP32 with TFT-Display. The values are stored in an array. The serial monitor shows the correct values, but the TFT display not. all examples are working propperly. In my code are two errors!!! 1) on every 4th row is a huge value. Why? If the part in the setup is uncommen...
- Sun Oct 04, 2020 12:26 pm
- Forum: General Discussion
- Topic: ESP_ERR_ESPNOW_NO_MEM
- Replies: 3
- Views: 4580
Re: ESP_ERR_ESPNOW_NO_MEM
Solved! An interrupt disturbed the ESPNow routine.
My thougts were:
ESP_ERR_ESPNOW_NO_MEM is caused by an error after sending.
Was it a n error from receiver (response) or from sender? Are there further informations?
My thougts were:
ESP_ERR_ESPNOW_NO_MEM is caused by an error after sending.
Was it a n error from receiver (response) or from sender? Are there further informations?
- Sat Oct 03, 2020 5:31 pm
- Forum: General Discussion
- Topic: ESP_ERR_ESPNOW_NO_MEM
- Replies: 3
- Views: 4580
ESP_ERR_ESPNOW_NO_MEM
Hello, i used the example code for ESPNow for my project for weeks now. The project grows, but i changed nothing on the ESPNow code beause it works Now i got the Message: ESP_ERR_ESPNOW_NO_MEM (out of memory). After download and studying the 1741 pages of the documentation i know that ESP_ERR_ESPNOW...