-
-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Difference between Arduino & ESP-IDF #19
Comments
@mess-maker Congrats. This project was a base template I created for one of my commercial requirements.
/* ESP-IDF code for Arduino */
// Your arduino code
void setup() {
}
void loop() {
}
// The following portion (almost same) is merged when you compile Arduino, that's all.
// This is part of one of the files in the Arduino installed folder
extern "C" void app_main(void) {
setup(); // Your Arduino setup function
while (1) {
loop(); // Your Arduino loop function
}
} |
thanks I'll try to get started with that |
this is a great project for the WT32-SC01 Plus, many thanks for shaing this! |
Hi,
do you plan to make template like this one with arduino framework ?
Graphics & Touch Driver : LovyanGFX
UI / Widgets : LVGL 8.x
Framework : arduino
just received my new WT32-SC01 Plus, and don't know how to get started for now as I prefer to stick to arduino framework for now
The text was updated successfully, but these errors were encountered: