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

Responsive RPM Meter with High Resolution using Arduino

RPM meter is very common problem in Embedded system development. Most of the time we need to measure RPM and for this we need some kind of RPM or Tachometer. The most common approach that is used for making Tachometer or RPM Meter is to measure pulses for a specif duration and then multiply it […]

Categories
Arduino Examples Tutorials

Frequency Meter Using Arduino

In this post we are going to create a frequency meter using arduino. This frequency counter will count the number of cycles per second and will display the output on 16×2 LCD. We used proteous for simulation purpose and to quickly test our circuit. Full source code is provided at end of the post.

Categories
Arduino

Resistive Food Identification using Arduino

Abstract Food identification could be done in many ways as Every food is different in many ways, like shape, color, size and taste as well as many other chemical and electrical properties. What if we build some cool project out of it? Electronics is a fun to play with. So we are going to make […]