Skip to content

Commit

Permalink
Remove the main from the wasm example
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-rabault committed Jan 23, 2024
1 parent 5035fee commit 0dd1290
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions examples/projects/browser/led/src/main.c
Original file line number Diff line number Diff line change
@@ -1,16 +1 @@
#include "luos_engine.h"
// #include "ws_network.h"
#include "led.h"

int main(void)
{
Luos_Init();
// Ws_Init();
Led_Init();
while (1)
{
Luos_Loop();
// Ws_Loop();
Led_Loop();
}
}
// This file is only used for compilation purpose, you can use the compiled packages using JS instead.

0 comments on commit 0dd1290

Please sign in to comment.