Categories
Examples

Arduino RTC based Digital Clock with 7 segment module

Digital Clock with Arduino is an important and simple project to start with RTC. RTC Stands for Real-time Clock. Whenever we require the real-time clock management system we need to use some RTC interface. Componenet List Here is the list of components that we are going to use for building this setup Arduino Nano TM1637 […]

Categories
Examples

How to Control Your DC Motor Using Arduino

For an overview, DC Motor Control using Arduino is the automation of DC Motor. With the help of this automation, one can create advanced as well as simple voltage control and proportional control of DC Motor. To begin with, let’s discuss the DC Motor control with Arduino, the automation system of DC Motor with L298 […]

Categories
Examples

PWM in Arduino

Arduino Nano is a very good machine when it comes down to multitasking automation tasks. For many industrial designers, PWM is their main criterion when looking for a suitable automation platform. PWM stands for “Pulse width modulation”, which simply means that it is a type of signal that contains a range of possible frequencies. PWM […]

Categories
Examples

STM8s External interrupt example

Using External Interrupt is one of the key feature of any microcontroller. Just like any other microcontroller, STM8s series also provide the external interrupt functionality out of the box. If you are coming with any other 8-bit microcontroller family like the 8051 series you may notice that those microcontrollers provides limited numbers of pins for […]

Categories
STM8 Cosmic C Examples

STM8S UART Example Code

UART is one of the rudimentary and crucial peripheral. Using UART in STM8 microcontroller is also effortless. We will use STM8S003F3 or STM8S103F3 Blue pill board for the demo purposes. But this code will equally work well on other variants of the STM8S microcontrollers. As I had tested this code on STM8S903K3 micro controller as […]

Categories
ESP8266 Examples

Log Temperature sensor data to Google sheet using NodeMCU ESP8266

We often need to log data to different platforms. Due to the wide popularity of the NodeMCU, it is now possible to Log data to a secure and easy to access data sources like Google Sheet. Today, we are going to log temperature sensor data to google sheet using nodemcu esp8266. The reason for choosing […]

Categories
Examples ESP8266

DS18b20 Interfacing with ESP8266 NodeMCU board

DS18b20 is a temperature Sensor module which works on single wire protocol. The reason to choose DS18b20 as a temperature sensor is because, we can interface many DS18b20 sensors on single wire. So we do not need extra pins for interfacing as well as we also do not need analog pins. Because ESP8266 Nodemcu module […]

Categories
React-js Examples

How to create a React Bootstrap Navbar?

React bootstrap is a very handy and popular framework for using the bootstrap in React.js applications. Today we are going to create a react-bootstrap navbar example. In this example I will show you from a simplest navbar to a little bit complex one. So grab your keyboards and let’s get started. Installing react-bootstrap First thing […]

Categories
Examples

STM32F4 Discovery Board ADC + Usart

In this post we are going to read ADC1 channel 10 on GPIO PC0 on STM32F4 Discovery board. First of all we will set the Clock PLL to run the discovery board on full speed with 168Mhz frequency. Later we initialize the USART with the baudrate of 230400 Kbps and finally we initialize the ADC […]

Categories
PHP Examples MySQL

Simple Login System using PHP and MySQL

Today we are going to create a simple login page using PHP and MySQL. Login Systems are very first and basic needs when it comes to website development due to the large user-base. For any new developer it seems a trivial task to create a very basic but somehow secure login system. That is the […]