Categories
Next js

How to Setup Shadcn UI in Next.js 14 Quick and Easy Guide

This article will explain the integration of Shadcn-UI with your Next.js 14 Project. Integrating ShadCN-UI with Next.js can streamline your development process, offering a blend of flexibility and power. This guide will walk you through the steps to set up, configure, and optimize your Next.js project with ShadCN-UI, ensuring a smooth workflow and a clean […]

Categories
8051-8052 Assembly Language Examples

8051 Assembly Frequency Counter Example

Today we are going to make a very simple 8051 Assembly code for a frequency counter example. We are going to make the example very simple and to the point just the way we normally do in our previous examples. Today’s focus is to demonstrate the very simple frequency counting algorithm implementation in 8051 assembly […]

Categories
ESP32 ESP32-CAM

ESP32-CAM QR Reader with Next.js API

In our previous post we created a Next.js 14 API example code for QR code decoding. This simple esp32 QR code scanner example converts ESP32-cam image to base64 encoding and send to next.js API for QR code decoding. Now we are going to consume that API end point in our ESP32-CAM. The main challenges are […]

Categories
Next js

Nextjs 14 API routes for QR code decoding

Today I am going to tackle a very simple problem of QR code decoding with Next.js 14 API routes example program. We will create a very simple API route for QR code decoding. We are using the jsQR library. As with the new app router support in the Next.js, now the API routes are written […]

Categories
Project Ideas Projects

Problems I faced during Load management System using Arduino and ESP8266

Yesterday, I finished the first prototype of Load management system for a client and due to the short time, I faced some issues, which should be solved pre handed. Today, I am going to summaries what kind of problems I faced during the project and how I shifted and what I didn’t accomplished. So, this […]

Categories
Examples

Python Flask libraries required for web development

Today we are going to make a list of required libraries while doing web development using Flask framework in python. **Here are 20 must-learn libraries for Flask development, presented without explanation:** 1. Flask-SQLAlchemy2. Flask-WTF3. Flask-Login4. Flask-Mail5. Flask-Migrate6. Flask-RESTful7. Flask-JWT-Extended8. Flask-Babel9. Flask-SocketIO10. Flask-Caching11. Flask-Testing12. Flask-DebugToolbar13. Flask-Compress14. Flask-Bootstrap15. Flask-Moment16. Flask-Admin17. Flask-Marshmallow18. Flask-Cors19. Flask-WTF-CSRFProtect20. Flask-OAuthlib 1. **Flask-Flaskify**: Simplifies […]

Categories
Django Python

How to add and display Profile Picture in Django Models?

When we try to create profiles for our users, we need to upload the images. There are also many other scenarios where we need to add image to our data model. We need to upload the image to our upload folders and then we have to serve those images on the website whenever the views […]

Categories
Examples Microchip PIC16 PIC-CCS

PIC SPI example with PIC16F887 and 4094 shift register

We will explore the methods of using the built in SPI module in PIC16F887 Microcontroller. According to the datasheet of the microcontroller there is built in SPI module available in the microcontroller which could make life lot of easier when it comes to the SPI Master Slave communication. There is Master Synchronous Serial Port (MSSP) […]

Categories
8051-8052 Assembly Language Keil uVision

8051 7 segment display Interfacing

Want to create a digital counter using a 7-segment display and an 8051 microcontroller? This comprehensive guide walks you through the process step-by-step, from wiring connections to code examples in both assembly and C. We will demonstrate the 7 segment interfacing code in assembly as well as 7 segment interfacing C code with keil uvision compiler. Seven […]

Categories
FPGA

FPGA VHDL 7 Segment Multiplexing

Toady we are going to explain how to do time division multiple in VHDL language. This project will display a simple method to do the 7 segment multiplexing in VHDL language for Nexys 3 FPGA development board. To further understand the code you may want to look into our previous FPGA LED blinking example, where […]