You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Post a picture of the problem and describe what you expect to see
Run the pattern test and post the result as gif/video (need to have a bit more than one full RED/YELLOW/WHITE cycle)
State what version of PxMatrix you are running and what MicroController you use
Hi Dominic
I think my issue general
I am using latest version and ESP32 wroom-DA.
My sketch was working very good. But I had this error after esp32 board lib update now,
""
/home/gokhan/Arduino/libraries/PxMatrix_LED_MATRIX_library/PxMatrix.h:83:29: error: 'GPIO' was not declared in this scope
83 | #define GPIO_REG_SET(val) GPIO.out_w1ts = val
| ^~~~
/home/gokhan/Arduino/libraries/PxMatrix_LED_MATRIX_library/PxMatrix.h:408:5: note: in expansion of macro 'GPIO_REG_SET'
408 | GPIO_REG_SET(1 << _LATCH_PIN);
| ^~~~~~~~~~~~
""
I think Espressif changed ESP32 library, so we dosn't access GPIO port pins directly.
I tried to fix like;
#include "hal/gpio_ll.h" ;
#include <PxMatrix.h>
but it doesn't work. Any suggestion?
Thank you.
The text was updated successfully, but these errors were encountered:
Rules
Hi Dominic
I think my issue general
I am using latest version and ESP32 wroom-DA.
My sketch was working very good. But I had this error after esp32 board lib update now,
""
/home/gokhan/Arduino/libraries/PxMatrix_LED_MATRIX_library/PxMatrix.h:83:29: error: 'GPIO' was not declared in this scope
83 | #define GPIO_REG_SET(val) GPIO.out_w1ts = val
| ^~~~
/home/gokhan/Arduino/libraries/PxMatrix_LED_MATRIX_library/PxMatrix.h:408:5: note: in expansion of macro 'GPIO_REG_SET'
408 | GPIO_REG_SET(1 << _LATCH_PIN);
| ^~~~~~~~~~~~
""
I think Espressif changed ESP32 library, so we dosn't access GPIO port pins directly.
I tried to fix like;
#include "hal/gpio_ll.h" ;
#include <PxMatrix.h>
but it doesn't work. Any suggestion?
Thank you.
The text was updated successfully, but these errors were encountered: