From 702e7b7a082b6761fe7d2e1eb09d5196d07ec897 Mon Sep 17 00:00:00 2001 From: CalisJI Date: Thu, 22 Aug 2024 09:03:20 +0700 Subject: [PATCH] Update README --- README.md | 4 ++-- src/main.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 690e3b8..659928a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ # Project to controll LED Strip useing ESP32 via UPD protocol -### Data frame : -`List` ex: `[0xF800, 0x07E0, 0x001F] hoặc [64896, 2016, 31]` +### Data frame RGB565: +`List` ex: `[0xF800, 0x07E0, 0x001F, ...] hoặc [64896, 2016, 31, ...]` LED number = array size \ No newline at end of file diff --git a/src/main.cpp b/src/main.cpp index 6d9bc22..f6396d7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -277,7 +277,7 @@ void loop() { if (packetSize) { int len = udp.read(incomingPacket, MAX_UDP_SIZE); - Serial.println(len); + //Serial.println(len); if (len > 0) { receivePixels(incomingPacket, len); }