• Home
  • Tag: Embedded System

Tag: Embedded System

  • Raja Gupta
  • April 27, 2025

Setting Up Your First STM32 Project in STM32CubeIDE and Writing a Blinky Code

When you’re getting started with STM32 microcontrollers, one of the best ways to dive in is by building a simple LED Blinky project. In this post, I’ll walk you through every step to create a new STM32CubeIDE project for the Nucleo-F446RE board, manually write the initialization code using STM32 HAL APIs, and explain some important

  • Raja Gupta
  • April 27, 2025

How to Interface PIC18F45Q10 with PC using PL2303 USB to TTL

In this post, I will explain how to connect a PIC18F45Q10 microcontroller to a PC terminal using a PL2303 USB to TTL converter.The idea is simple: blink an LED to confirm the microcontroller is running, and print “Hello World” continuously over UART to the terminal. Along the way, I also faced a few practical issues,

  • Raja Gupta
  • April 26, 2025

Interfacing PIC18F45Q10 Microcontroller with Seven-Segment Display

This post explains how to drive a common cathode seven-segment display (SSD) with the PIC18F45Q10 microcontroller. We’ll implement a hexadecimal counter (0-F) that cycles through each digit, showcasing how to manipulate output pins to control the display. What is a Seven-Segment Display (SSD)? A Seven-Segment Display (SSD) is an electronic display device widely used for

  • Raja Gupta
  • April 7, 2025

Interfacing PIC18F45Q10 Microcontroller with LED

In this blog post, we’ll explore how to interface a simple LED with the PIC18F45Q10 microcontroller and make it blink at regular intervals. This is a great beginner project to understand how to work with input/output (I/O) pins, configure the microcontroller, and implement a delay for controlling time-based events. Components Needed Circuit Diagram The circuit

  • Raja Gupta
  • August 13, 2023

Demystifying the Linux Bash Shell – A Comprehensive Guide

Shell is a command-line interface or command language interpreter used in Linux and other Unix-like operating systems. It allows users to interact with their computers through text-based commands. Introduction Shell provides a way to perform various tasks, manage files, execute programs, and configure system settings, all without needing a graphical user interface (GUI). In Linux,

  • Raja Gupta
  • August 13, 2023

Getting Started with Linux Operating System

Linux is an open-source operating system based on the Linux kernel which was first released on September 17, 1991 by Linus Torvalds. Linux is much like the Unix operating system (closed source) with an Open source codebase. Introduction Linux is packaged as the Linux distribution which contains the supporting libraries, system software, and kernel, several

C Programming Practice Bootcamp – Learn by Coding

Updated: July 15, 2025
Beginner

This beginner-friendly course is designed for students and aspiring programmers who want to learn C programming by doing. Instead of long lectures and dry theory, you’ll write real code from Day 1. Every lesson is hands-on, built with short instructions, real examples, and instant challenges — just like how you’d learn in a coding bootcamp