Categories
Examples MERN Stack

How to start a MERN Stack Application

MERN Stack is basically Mongos, Express React.js and Node.js. Which means, in a MERN Stack application we create backend using Node.js and Express and Front End with React.js and for the Database we use NoSQL kind of Database which is MongoDB. In this post we are going to explain how to start a new MERN […]

Categories
ESP8266

100 IoT project ideas with ESP8266

In this post I am going to make a list of 100 projects which could be implemented with ESP8266 or ESP32 or Raspberry Pi Pico W. These are IoT based Projects. Remember that the complexity of these projects can vary widely, so it’s important to choose a project that aligns with your skills and resources. […]

Categories
Examples

Teachable Machines tflite model Python Test

If you had trained and tested your tflite model with teachablemachines you now want to test that in your python code. In this example code we are assuming the classification model and image processing task. We used the OpenCV and tensorflow model and load the tflite model with tf.lite.interpreter. Here is our complete code This […]

Categories
Android Kotlin

Android Kotlin Course Outline for beginners

Here is expected Course Outline for Android development in Kotlin language for beginners. You can follow the learning path of Android development in the following order and could achieve the learning goals of android development in less time with more productive way. Here’s a suggested course outline for a free Android Kotlin course:

Categories
STM32

STM32 DMA ADC Example

Today we are going to read the ADC with the help of DMA module in STM32F4 discovery board. If you had seen our previous STM32 post series, you may had remember that in one of our previous post we shows how to read the adc in timer trigger mode. In today’s tutorial our main focus […]

Categories
Assembly Language Examples Microchip PIC16 PIC16F877A

PIC16F877A PIC Microcontroller Keypad Interfacing in Assembly Language

Matrix 4×4 keypad interfacing with pic microcontroller is another one of the most wide problem which we often face and in today’s tutorial we are going to explain the 4×4 keypad interfacing with pic16f877a microcontroller. It makes very special problem to not even decode the matrix 4×4 keypad but also to open the door of […]

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 […]