Categories
Bootstrap Examples

Creating a Simple Pricing Table Using Bootstrap 5 Grid

Creating a Simple Pricing Table using Bootstrap 5 Grid will give you overview and confidence to properly understand and use Bootstrap 5 Grid. Pricing Table is one of the most widely used Component in any SaaS website. You have to show different pricing models to demonstrate how different packages could be subscribed or utilized. Let’s […]

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
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
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
Arduino Examples

How to Read a String from Serial in Arduino

Serial communication is one of the most commonly used forms of communication in Arduino. It enables the board to communicate with a computer or another devices. In some instances, you might have to transmit a string or a sequence of characters from Arduino to the connected device. Reading strings from serial input on Arduino can […]

Categories
Examples Proteus simulations

Add Arduino Library to Proteus 8

Proteus is widely used among embedded system developers for simulation. It is easy to use simulator from PCB Design and Circuit Simulator Software – Proteus (labcenter.com). You can easily simulate various electronic circuits as well as embedded systems with it. We also used this in our previous post regarding LED blinking codes where we demonstrated […]

Categories
Examples STM32 STM32F103

STM32 LED blinking Different Techniques

Delay using Systick Timer LED blinking with Sleep

Categories
Bootstrap JavaScript

Mastering Bootstrap 5 File Upload with Drag and Drop Magic

Today we are going to build a Bootstrap 5 file upload with drag and drop zone. The need of file upload input filed is very important. Almost every web-based project does need it most of the time. I recently came to this need where I have to implement my project about image processing in python […]

Categories
Examples Microchip PIC16

Using MikroC Pro Const Code and Resolving Illegal Pointer Error

In the MikrC Pro compiler using the const code variables sometimes seems headache as a beginner. Specially if you are trying to write that string letterals to LCD and getting the error of illegal pointer errors. In this post, I am going to show a simple hack to display the const code variables to lcd […]

Categories
Examples Next js

How to Create API Routes in Next.js 14

Next.js 14 got some cool stuff like the app router which makes it very different of creating API routes. Although you can use the same old convention but due to the new Server actions, this is going to change forever. This feature was originally introduced from the Next.js 13 and was introduces as an experimental […]