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
Arduino C#

Arduino + C# Serialport ReadLine and Display on Textbox

Today we are going to read analog input in Arduino and send that read value to Serial port via serial.println() function. After that we are going to create C# based winform application and read data coming from Arduino and display into a Textbox using delegate methods in C#. SerialPort Object in C# will help us […]

Categories
Kotlin Android

Android Network Call using Kotlin coroutines

Kotlin coroutines makes network calls much easier. Specially all the async await like programming. Basically the biggest candidate before the coroutines were the asyncTask in Android. But thanks to the Kotlin coroutines we can easily do that task in much simpler way. In this example we are going to fetch a simple URL feed with […]

Categories
Arduino Tutorials

Arduino 4 digit 7 segment multiplexing on Atmega8 using Timer 2 Interrupt

Here is the code to multiplex 4 digit 7 segment on Atmega8 using Timer 2 Interrupt. This code witll display digits array on seven segments. In our case we used 3024 to display on 7 segments.

Categories
FPGA

FPGA LED blinking Example

Led blinking example is considered a hello world program for any Hardware based softwares. So today we are going to blink the LED in my Nexys 3 Board. This example will serve the both examples, VHDL as well as Verilog. First of all we will look for the VHDL example. VHDL LED blinking Code Here […]

Categories
STM32

STM32 ADC Timer Trigger Example from scratch

Using STM32 ADC with Timer Trigger option it helps us to control the sampling time of the ADC. It also becomes important when we need to sample Audio or while making some waveform analysis options. In this tutorial we are going to extend our previous STM32 ADC+USART example, where we implemented the ADC basic single […]

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
Android Flutter

Flutter Navigation and Routes for Switching Screens

If you had done Android development before, you may be very well aware of the concept of the Activities and switching between activitis. Or passing data using bundles between activities. But when it comes to the Flutter we don’t talk about the activities anymore. Because of the more web friendly development, Flutter also call its […]

Categories
Arduino

Arduino 4 digit 7 segment Non Multiplexed Display using Shift Register

Welcome in another Arduino tutorial. Today we are going to explain how to interface 4 digit 7 segment display using shift register 4094. We used CD4094 shift register for interfacing but the technique is same and you can choose any other shift register of your choice like 74HC595 etc as well. Also the code written […]

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