Categories
Assembly Language Microchip PIC16 PIC16F877A

PIC Microcontroller-based Temperature Sensor in Assembly Language

In one of our last post we started the series of Assembly language programming of Microchip PIC. This is the continuation of the previous series. In this article we are going to explain the use of the ADC of pic microcontroller. Specially pic16f based microcontrollers. Although this code is generic and could be adapted to […]

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
Arduino

Arduino Tachometer using Interrupt

In this article we are explaining how to create a tachometer using Arduino. Although you can use any Arduino board you want, but we are using Arduino Nano in this article. Tachometer is usually used to measure the rpm of some rotational unit. This is one of the most widely used meter in industrial applications. […]

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
MATLAB

50 MATLAB Image Processing Ideas with Color Detection

In this article we will enlist 50 image processing ideas which could be done with simple color detection algorithm or variants of color segmentation using image processing toolbox of MATLAB. Look, a display of colors that can tell stories better than words! Images, which silently convey truths, have been praised by poets and painters for […]

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
React-js

React Map Array Of Objects

Most of the time we feel need to iterate over objects and display them in jsx form or in HTML page. In react we can simply use the pure JavaScript function of “map()” to iterate over the arrays or even the arrays of objects and we can simply output the corresponding data. Here is one […]