Skip to content

Commit 9d6974e

Browse files
committed
README: Add more descriptive comments on platformio main example.
1 parent 40290df commit 9d6974e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,11 +268,17 @@ Modify the `main.c` like this:
268268
int app_main(void)
269269
{
270270
lv_init();
271-
// hw_init();
271+
272+
/* Initialize your hardware. */
273+
274+
/* hw_init(); */
272275
273276
demo_create();
274277
275-
// hw_loop();
278+
/* Create the UI or start a task for it.
279+
* In the end, don't forget to call `lv_task_handler` in a loop. */
280+
281+
/* hw_loop(); */
276282
277283
return 0;
278284
```

0 commit comments

Comments
 (0)