bug2k19
bug2k19
... I'm new to these things and no expert, but is it because you are clearing the screen and re-drawing every loop rather than updating the screen only if something...
Thanks for getting back, here's a clip running that code with the following panel settings. ``` #define PANEL_RES_X 64 #define PANEL_RES_Y 32 #define PANEL_CHAIN 1 ``` https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-DMA/assets/50246800/a8f022c5-336c-44c2-a2fd-498459207359 Here is the...
Thanks! I'm an imbecile, where do I add/modify that code?
Here is the code for that run. ``` #include #define R1_PIN 2 #define G1_PIN 12 #define B1_PIN 4 #define R2_PIN 16 #define G2_PIN 27 #define B2_PIN 17 #define A_PIN 5...
I get an error on compiling, line4. ``` error: expected class-name before '{' token { ^ ```
``` fix_test:4:1: error: expected class-name before '{' token { ^ fix_test:6:11: error: 'VirtualMatrixPanel' has not been declared using VirtualMatrixPanel::VirtualMatrixPanel; // inherit VirtualMatrixPanel's constructor(s) ^~~~~~~~~~~~~~~~~~ fix_test:16:5: error: 'VirtualCoords' does not name...
I still get errors, apologies, I've had very little to do with c++ over the years. ``` #include #include class OneEightScanPanel : public VirtualMatrixPanel { public: using VirtualMatrixPanel::VirtualMatrixPanel; // inherit...
Is there a location I can find the workaround?
I got it working by changing some of the code in the ESP32-VirtualMatrixPanel-I2S-DMA.h header file, it's not an elegant solution, but works for the panel I have. ``` inline VirtualCoords...
Thanks, I realise it was a hack just to get this panel working. Your new code also works correctly with this panel.