
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...

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...

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...

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...

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...

SSDLite + MobileNet Object Detection with OpenCV DNN
I recently find out that OpenCV have Deep Neural Network module which is purely CPU based and no GPU required. So I thought to give...

Real Time Contours Detection findcontours OpenCV Python
In this tutorial we are going to learn the usage of findcontours and drawcontours functions in OpenCV Python. We will create code for doing this...

MATLAB Color Segmentation and Color Threshing
Color Segmentation is very basic problem in digital image processing. Most of the time we need to segment Object based on their colors. So Color...

STM8 TIMER 4 Example in Cosmic C
TIM4_CNTR register is used for counting value. TIM4_PSCR = 0x01 will divide input clock with 2 and finally 0th bit of TIM4_CR1 is used to enable or disable timer

LCD 4 bit mode interfacing with STM8 in C from scratch
We are going to interface LCD 4 bit mode with stm8s103f3 microcontroller. The code will be equally applicable for similar line STM8 microcontroller. The language...