Skip to content

Commit

Permalink
che
Browse files Browse the repository at this point in the history
  • Loading branch information
Yves BAZIN authored and Yves BAZIN committed Jan 18, 2024
1 parent 4a4ee78 commit 61585b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testcode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
# Set the build folder and file names for esp32-qemu-sim
debug: true
qemu-timeout: 999
qemu-timeout: 100
build-folder: examples/gettingstarted/build
partitions-csv: partitions.csv
firmware-bin: gettingstarted.ino.bin
Expand Down
2 changes: 1 addition & 1 deletion examples/gettingstarted/gettingstarted.ino
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void loop() {
time2=ESP.getCycleCount();
driver.showPixels();
time3=ESP.getCycleCount();
Serial.printf("Calcul pixel fps:%.2f showPixels fps:%.2f Total fps:%.2f \n",(float)240000000/(time2-time1),(float)240000000/(time3-time2),(float)240000000/(time3-time1));
ESP_LOGI("test",("Calcul pixel fps:%.2f showPixels fps:%.2f Total fps:%.2f \n",(float)240000000/(time2-time1),(float)240000000/(time3-time2),(float)240000000/(time3-time1));
off++;

}
2 changes: 1 addition & 1 deletion examples/panelhardwarescroll/panelhardwarescroll.ino
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#define CLOCK_PIN 16
#define LATCH_PIN 26
#define NUM_STRIPS 32
#define ENABLE_HARDWARE_SCROLL
#define I2S_MAPPING_MODE I2S_MAPPING_MODE_OPTION_SCROLL_MAPPING_SOFTWARE_IN_MEMORY
#include "I2SClocklessVirtualLedDriver.h"
//here we have 3 colors per pixel
uint8_t leds[NUM_STRIPS*NUM_LEDS_PER_STRIP*3];
Expand Down

0 comments on commit 61585b8

Please sign in to comment.