111763 Views
85221 Views
83639 Views
51774 Views
49949 Views
48472 Views
Obsidian - the best tool for Makers
10 Projects for your Raspberry Pi Pico
Raspberry Pi Telegraf Setup with Docker
Setting Up Dynamic DNS on a Raspberry Pi for Self-Hosting
Raspberry Pi WordPress Setup with Docker
Raspberry Pi WireGuard VPN Setup with Docker
Using the Raspberry Pi Pico's Built-in Temperature Sensor
Getting Started with SQL
Introduction to the Linux Command Line on Raspberry Pi OS
How to install MicroPython
Wall Drawing Robot Tutorial
BrachioGraph Tutorial
KevsRobots Learning Platform
30% Percent Complete
By Kevin McAleer, 1 Minute
MicroPython is easier to write, cleaner and clearer to read, and faster to get the results you want, than other languages such as C++.
Compare these two examples below.
First is a piece of code written for the Arduino in C++:
Arduino
C++
#include <iostream> void main() { std::cout << "hello world"; }
The second piece of code is written in MicroPython:
MicroPython
print(“hello world)
As you can see, the MicroPython code is simpler, easier to read, shorter and faster to write.
< Previous Next >