Burning Bootloader into Nano CH340
The bootloader is the program burned into an Arduino board and runs the moment the Arduino is powered on or when the reset button…
Programming for microcontrollers and single-board computers. C++, MicroPython, CircuitPython, Python on Pi, and Linux shell.
The bootloader is the program burned into an Arduino board and runs the moment the Arduino is powered on or when the reset button…
One of the most affordable and compact microcontrollers available on the market is the Nano CH340, an Arduino compatible microcontroller board at an affordable…
A recent project of ours involved using a sensor to detect when a small remote-controlled car hits an obstacle. What better sensor to use…
Neurons stack into networks. This walks through a small Keras model end to end — feed inputs, watch backprop adjust the weights, then predict…
In this tutorial, you will learn the fundamentals of neural networks and deep learning – the intuition behind artificial neurons, the standard perceptron model,…
OpenCV is an instrumental library in real-time computer vision. Aside from its image processing functions, it is also open-source and free to use –…
Exciting times ahead as software advancements let you implement computer vision applications on single-board computers like the Raspberry Pi. Today, we explore how computer…
Get rid of the nasty folders you store your sketches into on your computer. In this tutorial, you are going to learn how to…
Data Science doesn’t work without data. It’s the root of analysis, computing, and development in this booming field. And while there’s always the option…
Drive Linux straight from inside Python. `subprocess.run()` shells out to `ls`, `apt`, or your own bash scripts — captures stdout, stderr, and exit codes…
Another popular feature of the Raspberry Pi is its ability to interact with a wide range of electronic components, and the easiest way to…
A low-level language like C is more efficient in programming microcontrollers because it is closer to machine language. In this tutorial, you will learn…