Hello everyone, this is not the tutorial post perse, but the basic guideline intending to help those guys who are starting a career in Embedded Systems. Here I am assuming here that you have an idea about what is Embedded systems and also some...
Learning and teaching should not stand on opposite banks and just watch the river flow by; instead, they should embark together on a journey down the water. Through an active, reciprocal exchange, teaching can strengthen learning how to learn.
Area We Cover

AVR Tutorials

Arduino Tutorials

Python Tutorials
Recent Post
Going In Depth of Variables in C – Declaration, Rules and Scope
RULES FOR CONSTRUCTING VARIABLES NAME: The name is a combination of alphabets, digits or underscores and its length should not exceed 8 characters. Some compilers allow 40 characters too. The first character is an alphabet No commas, blank spaces...
This Pointer in C++
In this article, we will understand more about the this pointer as well as understand more about it’s use case. The This Pointer This is the pointer whose type is the same as the class type. Okay, but where does it points? Yeah, it points to...
Binary and Hexadecimal Numbers
So far, we are accustomed to the decimal number system. In this article, we are going to explore more types of number systems which is – Binary and Hexadecimal Number system, and why it is important in computers. Number system As you may...
Binary Coding
In the world of Digitization with upcoming new technologies, creation of Software we are forgetting the base of it. Does anyone even has ever pondered about the existence of it where we got to know about the language of Computers? Do you know who...
Getting started with GDB
In this article, I am going to help you set up the debugger and use that in your machine. This is the second article in this series. In the first article, I have written about approaches to debug your c/c++ application. GDB For You The debugger I...