Replaced "if" with "#if", changed int to uint32_t
Replaced if statements with #if preprocessor macros. Replaced one #ifdef macro with #if. Changed `int secondTimer` to `uint32_t secondTimer` to avoid signed/unsigned integer comparison. The `millis()` function returns `uint32_t`. Removed asterix output from FPS output.
This commit is contained in:
parent
daf08d45bb
commit
e95cef5a99
@ -5,11 +5,11 @@
|
|||||||
#include <WiFiUdp.h>
|
#include <WiFiUdp.h>
|
||||||
#include "ws2812_i2s.h"
|
#include "ws2812_i2s.h"
|
||||||
|
|
||||||
// Set this to the number of LEDs in your LED strip
|
// Set to the number of LEDs in your LED strip
|
||||||
|
|
||||||
#define NUM_LEDS 60
|
#define NUM_LEDS 60
|
||||||
// Maximum number of packets to hold in the buffer. Don't change this.
|
// Maximum number of packets to hold in the buffer. Don't change this.
|
||||||
#define BUFFER_LEN 1024
|
#define BUFFER_LEN 1024
|
||||||
|
// Toggles FPS output (1 = print FPS over serial, 0 = disable output)
|
||||||
#define PRINT_FPS 1
|
#define PRINT_FPS 1
|
||||||
|
|
||||||
// Wifi and socket settings
|
// Wifi and socket settings
|
||||||
@ -50,9 +50,9 @@ void setup() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
uint8_t N = 0;
|
uint8_t N = 0;
|
||||||
#ifdef PRINT_FPS
|
#if PRINT_FPS
|
||||||
int fpsCounter = 0;
|
uint16_t fpsCounter = 0;
|
||||||
int secondTimer = 0;
|
uint32_t secondTimer = 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void loop() {
|
void loop() {
|
||||||
@ -69,20 +69,15 @@ void loop() {
|
|||||||
pixels[N].B = (uint8_t)packetBuffer[i+3];
|
pixels[N].B = (uint8_t)packetBuffer[i+3];
|
||||||
}
|
}
|
||||||
ledstrip.show(pixels);
|
ledstrip.show(pixels);
|
||||||
|
#if PRINT_FPS
|
||||||
if(PRINT_FPS == 1)
|
|
||||||
{
|
|
||||||
Serial.print("*");
|
|
||||||
fpsCounter++;
|
fpsCounter++;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
#if PRINT_FPS
|
||||||
if(PRINT_FPS == 1){
|
if (millis() - secondTimer >= 1000U) {
|
||||||
if(millis() - secondTimer >= 1000)
|
|
||||||
{
|
|
||||||
secondTimer = millis();
|
secondTimer = millis();
|
||||||
|
|
||||||
Serial.printf("FPS: %d\n", fpsCounter);
|
Serial.printf("FPS: %d\n", fpsCounter);
|
||||||
fpsCounter = 0;
|
fpsCounter = 0;
|
||||||
}
|
}
|
||||||
}
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user