Projects
Temperature controlled fan using AVR Microcontroller (ATMega16)
Introduction: You may have seen so many applications of temperature control and indicators using different…
Read More
Frequency Measurement and Pulse Width Measurement using Microcontroller (AT89C51)
Frequency Measurement Pulse Width Measurement using Microcontroller and Circuit designers and developers need different measuring…
Read More
Light tracker using LDR, stepper motor and AVR microcontroller
Introduction: Electricity is the most necessary and important element of human life. We cannot imagine…
Read More
2 in 1 RPM and Frequency Counter
Frequency measurement is one of the main requirements for many applications. The most obvious the…
Read More
Intelligent Train Engines
We know that the Indian rail network is the largest in South Asia and perhaps…
Read More
Remote Temperature Monitoring System
The temperature regulator or monitoring system is one of the most requested systems in almost…
Read More
Topics
Strings in C language
Strings in ‘c’ are defined as a series of characters. The difference between a string…
Read More
Arrays in C language
Introduction to arrays in c language Arrays a kind of data structure that can store…
Read More
Introduction to C language
C language is a procedural programming language. It was originally developed by Dennis Ritchie in…
Read More
Write a program to read three numbers from the keyboard and find the maximum out of these three numbers. (nested if-else)
if else program You can get more c related programs and more here http://projugaadu.com/category/topics/c-language/
Read More
Write a program to read marks of a student from keyboard whether the student is pass or fail (using if else)
#include<stdio.h> int main() { int marks; printf("\n Enter Marks from 0-70 :"); scanf("%d",&marks); if(marks<23) {…
Read More
C Programs
VLSI Programs
Build and simulate full adder circuit using half adder as a component in VHDL
full adder circuit using half adder Code: Simulation waveforms: V.L.S.I Topics C Languages Topics Related…
Read More
Build and simulate 4×1 mux, 8×1 mux, 1×4 demux and 1×8 demux in VHDL
4×1 8×1 multiplexer 1×4 demux and 1×8 demux 4×1 Multiplexer Code: Simulation Waveform: 8×1 Multiplexer…
Read More
Build and simulate 8×3 encoder and 3×8 decoder in VHDL
V.L.S.I Topics C Languages Topics Related Tech-News
Read More
Build and simulate SR flip-flop and D flip-flop in VHDL
SR flip-flop and D flip-flop D Flip – Flop with enable and reset Code: Simulation…
Read More
Build and simulate JK Flip-Flop and T-Flip-flop in VHDL
JK Flip-Flop and T Flip-Flop JK Flip-Flop with active high reset input Code: Simulation Waveforms:…
Read More
Recent Posts
Strings in C language
Strings in ‘c’ are defined as a series of characters. The difference between a string…
Read More
Arrays in C language
Introduction to arrays in c language Arrays a kind of data structure that can store…
Read More
Introduction to C language
C language is a procedural programming language. It was originally developed by Dennis Ritchie in…
Read More
Write a program to read three numbers from the keyboard and find the maximum out of these three numbers. (nested if-else)
if else program You can get more c related programs and more here http://projugaadu.com/category/topics/c-language/
Read More
Write a program to read marks of a student from keyboard whether the student is pass or fail (using if else)
#include<stdio.h> int main() { int marks; printf("\n Enter Marks from 0-70 :"); scanf("%d",&marks); if(marks<23) {…
Read More