mirror of
https://github.com/openmv/openmv.git
synced 2025-09-26 23:09:13 +08:00
15 lines
372 B
C
15 lines
372 B
C
static const char fresh_main_py[] =
|
|
"# main.py -- put your code here!\n"
|
|
"import machine, time\n"
|
|
"led = machine.LED(\"LED_BLUE\")\n"
|
|
"while (True):\n"
|
|
" led.on()\n"
|
|
" time.sleep_ms(150)\n"
|
|
" led.off()\n"
|
|
" time.sleep_ms(100)\n"
|
|
" led.on()\n"
|
|
" time.sleep_ms(150)\n"
|
|
" led.off()\n"
|
|
" time.sleep_ms(600)\n"
|
|
;
|