Difference between revisions of "Scratchpad"

From Family History Book
Line 16: Line 16:
 
* Seeed Studio wiki for Wio Terminal built-in light sensor project: https://wiki.seeedstudio.com/Wio-Terminal-Light/
 
* Seeed Studio wiki for Wio Terminal built-in light sensor project: https://wiki.seeedstudio.com/Wio-Terminal-Light/
 
** When CircuitPython is loaded on Seeeduino Wio Terminal, all you need to do is to write your python program and name it main.py and drag it onto the CIRCUITPY drive.
 
** When CircuitPython is loaded on Seeeduino Wio Terminal, all you need to do is to write your python program and name it main.py and drag it onto the CIRCUITPY drive.
 +
 +
==ESP32 S3==
 +
* [https://www.hackster.io/mjrobot/tinyml-made-easy-image-classification-cb42ae Image Classification with TinyML]
  
 
==Discord Tips==
 
==Discord Tips==

Revision as of 14:01, 16 May 2023


Back to Private


Learning

Courses to Take

Tech Stuff

Wio Terminal Links

ESP32 S3

Discord Tips

  • To include some code in your post, surround the code in single backticks (`) for inline code, or triple backticks for a block of code.
  • You can add an optional language marker to get syntax highlighting for that language. Common markers are py, c, and sh.
`​`​`py
# Check for equals.
if a == b:
    print("Match")
`​`​`
becomes:
# Check for equals.
if a == b:
    print("Match")