fbpixel
A few notes on using Git

A few notes on using Git

GitHub is an open source version management and collaboration platform for software developers. It is based on Git, an open source versioning tool. It provides a chronology of lossless developments, which can easily be multi-user by specifying the author, date and...
Install PlatformIO IDE on Visual Studio Code

Install PlatformIO IDE on Visual Studio Code

In this tutorial we will configure Visual Studio Code to run C Hardware Computer Arduino UNO board or other USB cable to connect Arduino board to PC Installing Visual Studio Code and PlatformIO IDE Follow the installation steps to download .Net 6.0 Then open Visual...
Learn to code in C#

Learn to code in C#

In this tutorial we will configure Visual Studio Code to run C# scripts Installing Visual Studio Code Install .Net 6.0 Then open Visual Studio Code Installing the C# extension Check .NET installation in terminal dotnet –version Creating a console application...
Measurement filters with Arduino

Measurement filters with Arduino

In electronics, when working with electrical signals such as sensor measurements or audio signals, it is common practice to use filters. These filters are used to modify these signals with a view to correcting, analyzing or evaluating them correctly. This is known as...
A quick look at the C pointer

A quick look at the C pointer

, The C language pointer is a very powerful tool for carrying out certain tasks. It’s a concept you need to grasp if you want to improve your C skills. Some algorithms will be more complicated or even impossible to write without the use of pointers. Introduction...