RIOT - The friendly OS for IoT
-
Updated
Nov 29, 2020 - C
{{ message }}
RIOT - The friendly OS for IoT
Open source ARM Cortex-M microcontroller library
Keil projects and libraries for STM32F4xx devices
Keyword spotting on Arm Cortex-M Microcontrollers
A comprehensive and FREE Online Python Development course FOR KIDS utilizing an official BBC micro:bit Development Board and later an Expressif ESP32 Development Board going step-by-step into the world of Python for microcontrollers.
Secure boot for 32-bit Microcontrollers!
modm: a C++17 library generator for AVR and ARM Cortex-M devices
object-oriented C++ RTOS for microcontrollers
vendor independent deep learning library, compiler and inference framework microcomputers and micro-controllers
open source bare-metal C firmware and documentation for microcontrollers
Automated PID tuning using Ziegler-Nichols/relay method for microcontrollers including Arduino
An open-source OS for small embedded applications.
Oberon → ARMv{6,7E}-M compiler
PyCon 2020 Talk: "How to build an intelligent “indoor garden” with microcontrollers, CircuitPython, and IoT."
A lightweight linked list type queue implementation, meant for microcontrollers.
I have 10 bit input data like this
const double inputs[110][8] = {
{540,131,48,3,0,0,0,0},
{624,167,63,15,0,0,0,0},
{736,224,96,31,0,0,0,0},...
but after learning output is the same for exemple
0.8215888
0.8215888
0.8215888
...
after i divide for 1024 i have data like this
const double inputs[110][8] = {
{0.52734375,0.1279296875,0.046875,0.0029296875,0,0,0,0},
{0.609375,0.1630859375,
Lightweight unit testing framework for C/C++ projects. Suitable for embedded devices.
Sensor instrumentation, data management, and minimal UI for tanks full of freshwater prawns
An interpreter for a lisp-like language implemented in C.
Generic Circular Queue Buffer implementation for Embedded Systems
Fast, safe and easy to use Cortex-M HAL Library, written in C++ 17
A simple command-line interface for use in embedded systems.
The TinyML "Hello World" sine wave model on Arduino Uno v3
Add a description, image, and links to the microcontrollers topic page so that developers can more easily learn about it.
To associate your repository with the microcontrollers topic, visit your repo's landing page and select "manage topics."
All examples seems to put all code in the main() function, and demonstrate some static condition happening once. However, this does not reflect any real use cases, and I struggle really hard to implement anything actually useful using the HAL (unless of course I would put all logic into the main() function). There should be some examples which shows actual useful use-cases, and not just PoCs.