Categories
Examples

Arduino GPS Tracker with Real-Time Location Tracking

In this article we are going to implement a real time location tracking system with NEO GPS and a SIM800 GSM module. This is for the intention to track location of your vehicle or any other thing that you want to track and want to know the position on your mobile phone. There are many […]

Categories
Examples MATLAB

Color Blood Vessel detection using MATLAB image processing

If we are looking for fundus images of eyes. We are actually need some machanism before we process these images to look for blood vessels. In this article we are looking for color blook vessels detection method in MATLAB. We are going to cover the basic image processing techniques on the fundus images to find […]

Categories
Examples

ECG Signal Denoising in MATLAB: A Comprehensive Guide with Code Example

Electrocardiogram or in short (ECG), is a widely used by medical practitioners as a diagnostic tool for cardiovascular diseases. However, ECG signals are often corrupted by noise, making it challenging to extract useful information. In this article, we will explore ECG signal denoising in MATLAB, a powerful tool for biomedical signal processing. Therefore, we will […]

Categories
Examples Node js

Real Time Chat Application in Node js using Scoket IO

In this Node js tutorial we will demonstrate a simple Real Time Chat application using the WebSockets and we are going to use the Socket.io package for this. Let’s create a new node js project by creating a directory navigating to that and using the command node init -y. After that just navigate to that […]

Categories
Examples

Exploring Arduino Serial Communication Beyond the Basics

We are not just focusing on Serial.read() and Serial.write() etc. We will try to look onto some advance, beyond the basics functions which you may need into your daily embedded system development life with Arduino. Arduino Serial communication is one of the basic thing that every beginner learn but still there are some features you […]

Categories
Examples

React Tailwind CSS Sidebar Layout

Today we are going to give the example of Tailwind CSS sidebar layout page. Where we are going to demonstrate two options which are extracted from the stackoverflow page. Here is the first example Above example is clean and simple with sticky sidebar. But if you prefer to do this without the sticky thing and […]

Categories
Bootstrap

Bootstrap 5 Simple Login Page Example

Today we are going to create a simple login page using Bootstrap v5. Bootstrap v5 is the latest version of the Bootstrap and for creating a simple login page first of all we need to navigate to bootstrap official getting started page and grab minimum html5 template and start from there. Once we are done […]

Categories
Examples

PIC Timer1 External Clock Frequency Counter

We are using the PIC16f887 microcontroller’s internal Timer1 module in External Clock mode to count the number of clocks on the associated pin RC0. While using the timer1 module, we have two options for selecting the clock source, 1 is to use the internal clock or we can select the external clock source by setting […]

Categories
Examples

MicroPython getting started Guide

MicroPython is getting hype these days, due to the most advanced microcontrollers and development boards are now supporting the MicroPython. Especially the MicroPython support for ESP8266 and MicroPython for ESP32 board and now the modern Raspberry Pi Pico board is also supporting the MicroPython. Originally the MicroPython was designed for Pyboard which was specially designed […]

Categories
Examples

PIC16F676 LED Blink Program

LED Blink Program is a hello world program of microcontroller world. It not only gives us the idea of how to use the GPIOs of the microcontroller but also makes us sure that our development environment is stable and ready to use. PIC16F676 microcontroller is a 14 pin microcontroller that is very much suitable for […]