Skip to content

Instantly share code, notes, and snippets.

@palaniraja
Created July 10, 2025 00:27
Show Gist options
  • Save palaniraja/be4d5cae1cff91307c277dd61502ba54 to your computer and use it in GitHub Desktop.
Save palaniraja/be4d5cae1cff91307c277dd61502ba54 to your computer and use it in GitHub Desktop.
CrowPanel 5.0, platform io
#include <Arduino.h>
static unsigned int count = 0;
void setup()
{
Serial.begin(115200);
Serial.println("Hello World!");
}
void loop()
{
static unsigned int count = 0;
count+=1;
delay(1000);
Serial.println(count);
}
[env:denky32]
platform = espressif32
board = denky32
board_build.mcu = esp32s3
framework = arduino
lib_deps =
; lvgl/[email protected]
; bodmer/TFT_eSPI@^2.5.31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment