Created
July 10, 2025 00:27
-
-
Save palaniraja/be4d5cae1cff91307c277dd61502ba54 to your computer and use it in GitHub Desktop.
CrowPanel 5.0, platform io
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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