NANO-RP2040: Add fresh filesystem custom templates.

This commit is contained in:
iabdalkader 2022-01-15 23:27:57 +02:00
parent 2ae2465d6a
commit 1379b173dd
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,20 @@
static const char fresh_main_py[] =
"# Blinky example\n"
"\n"
"import time\n"
"from machine import Pin\n"
"\n"
"# This is the only LED pin available on the Nano RP2040,\n"
"# other than the RGB LED connected to Nina WiFi module.\n"
"led = Pin(6, Pin.OUT)\n"
"\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"
;

View File

@ -0,0 +1,19 @@
static const char fresh_readme_txt[] =
"Thank you for supporting Arduino and the OpenMV project!\r\n"
"\r\n"
"To download the OpenMV IDE, please visit:\r\n"
"https://openmv.io/pages/download\r\n"
"\r\n"
"For tutorials and documentation, please visit:\r\n"
"https://docs.arduino.cc/\r\n"
"http://docs.openmv.io/\r\n"
"\r\n"
"For technical OpenMV support and projects, please visit the forums:\r\n"
"http://forums.openmv.io/\r\n"
"\r\n"
"For Arduino related issues, please visit the Arduino help center:\r\n"
"https://support.arduino.cc/\r\n"
"\r\n"
"Please use Github to report bugs and issues:\r\n"
"https://github.com/openmv/openmv\r\n"
;