Difference between revisions of "Scratchpad"
From Family History Book
(→TinyML) |
(→TinyML) |
||
Line 22: | Line 22: | ||
* [https://www.hackster.io/taunoerik/capture-images-with-grove-vision-ai-sensor-c8906c Image Capture with Grove Vision AI Sensor] | * [https://www.hackster.io/taunoerik/capture-images-with-grove-vision-ai-sensor-c8906c Image Capture with Grove Vision AI Sensor] | ||
* [https://wiki.seeedstudio.com/Train-Deploy-AI-Model-Grove-Vision-AI/ Train & Deploy AI Model with Grove Vision AI] | * [https://wiki.seeedstudio.com/Train-Deploy-AI-Model-Grove-Vision-AI/ Train & Deploy AI Model with Grove Vision AI] | ||
+ | * [https://docs.edgeimpulse.com/docs/~/revisions/WOgRGOTQBrFnmbtextkF/development-platforms/officially-supported-mcu-targets/seeed-grove-vision-ai Edge Impulse official support for Grove Vision AI module] | ||
==Discord Tips== | ==Discord Tips== |
Revision as of 13:11, 16 May 2023
Back to Private
Learning
Courses to Take
Tech Stuff
Wio Terminal Links
- GitHub for Wio Terminal SenseCap project: https://github.com/Seeed-Studio/SenseCraft
- 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.
- Sensor Prototype Kit wiki using Wio Terminal & Grove sensors
TinyML
- Image Classification with TinyML using ESP32S3
- Image Capture with Grove Vision AI Sensor
- Train & Deploy AI Model with Grove Vision AI
- Edge Impulse official support for Grove Vision AI module
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")
- More information about formatting posts in Discord is here: https://support.discord.com/hc/en-us/articles/210298617-Markdown-Text-101-Chat-Formatting-Bold-Italic-Underline-