LED Matrix and How to make our own LED Dot Matrix?

LED Dot Matrix

Generally, we have many displays available in the market like OLED, LCD display, LED Display, etc. We cannot make those displays in our home. But there is one display called LED matrix display which is used widely in the industry. We can make the LED matrices in our home. We are going to see how … Read more

Queue in C – Data Structures Part 4

This article is a continuation of the  Series on Data Structures and carries the discussion on different types of data structures and their implementation. The aim of this series is to provide easy and practical examples that anyone can understand. In our previous article, we have seen how to implement the stack data structure using the Linked List. In this … Read more

Stack implementation using Linked list – Data Structures Part 3

Stack Implementation using Linked List

This article is a continuation of the  Series on Data Structures and carries the discussion on different types of data structures and their implementation. The aim of this series is to provide easy and practical examples that anyone can understand. In our previous tutorial, we have seen how to create a stack using a one-dimensional array. … Read more

Understanding the Microcontroller GPIO – GPIO Working Explained

Understanding the Microcontroller GPIO

In general, whenever we learn a new programming language we used to write the “Hello World” program first. Likewise in the microcontroller, we try the LED Blinking program. To blink the LED, we need to access the  GPIO. If you are a programmer, you can just write “1” to the GPIO pin to make it … Read more

Stack Data Structure in C Programming – Data Structures Part 2

Stack Data Structure in C

This article is a continuation of the  Series on Data Structures and carries the discussion on different types of data structures and their implementation. The aim of this series is to provide easy and practical examples that anyone can understand. In our previous article, we discussed what is a Data structure and why we need that. In this article, … Read more

Lexical Tokens – Verilog Tutorial Part 3

Lexical Tokens

This article is a series on the Verilog – HDL and carries the discussion on Verilog HDL. The aim of this series is to provide easy and practical examples that anyone can understand. In our previous article, we have seen Modeling, Simulation, and Synthesis in the Verilog. In this article, we will discuss Lexical Tokens – Verilog Tutorial … Read more

Modeling, Simulation, and Synthesis – Verilog-HDL Part 2

This article is a series on the Verilog – HDL and carries the discussion on Verilog HDL. The aim of this series is to provide easy and practical examples that anyone can understand. In our previous article, we have seen the introduction and history of the Verilog-HDL. In this article, we will discuss Modeling, Simulation, … Read more

Data Structure in C Introduction – Data Structures Part 1

This article is a Series on Data Structures and carries the discussion on different types of data structures and their implementation. The aim of this series is to provide easy and practical examples that anyone can understand. In our last article, we discussed Flexible Array Member in C (FAM). In this article, we’re going to … Read more

Introduction to Verilog-HDL Part 1

Introduction to Verilog

This article is the series of the Verilog – HDL and carries the discussion on VHDL. The aim of this series is to provide easy and practical examples that anyone can understand. This is the Introduction to Verilog – HDL Part 1.Introduction to Verilog – HDL Part 1 What is Verilog HDL? The Verilog Hardware … Read more

Structure, Structure Padding, Packing, Bit fields in C Programming

Structures in C

This article is the continuation of the Series on the C programming tutorial and carries the discussion on C language programming and its implementation. It aims to provide easy and practical examples for understanding the C program. In our last article, we have seen the Strings in C programming. In this article, we will see structures in C programming.There are … Read more