Posts by Ibrar Ayyub:
Basic input-output For CSS Compiler
Posted on: 20 Nov 2022
#include <16F877.h> #device adc=8 #FUSES NOWDT ,XT #use delay(clock=4000000) void main() { set_tris_a(0xff); set_tris_b(0x00); setup_adc_ports(NO_ANALOGS); setup_adc(ADC_OFF); output_b(0x00); while(true){ if(!input(pin_a0)){ output_b(0xff); delay_ms(100);} if(!input(pin_a1)){ output_b(0x00); delay_ms(100);} } }
Nokia 3315 / 3310 LCD interfacing with Microcontroller
Posted on: 19 Nov 2022
Displaying content on a normal alphanumeric display is very limited ,we have to be limited with the font size and we can’t draw any graphics also. but convention Graphics lcd are really very expensive so here is the solution, you can use Nokia 3315 / 3310 monochrome LCD to display your large font text and graphics . the reason behind using […]
Cell Phone Detector
Posted on: 19 Nov 2022
Project Summary This is a mobile phone sniffer circuit that can detect the signals being used in the GSM (Global System for Mobile Communication) band at about 900 MHz. Since the signals are digitally encoded, it can detect only the signal activity, not the speech or the message contents. A headphone is used to hear […]
PIC 16f877 microcontroller based RPM Meter
Posted on: 18 Nov 2022
Summary: The speed of the motor is measured in Rotations per Minutes,RPM.The RPM Meter is to read the running speed of Motor like DC MOTOR. Here the speed of the DC Motor is sensed with the help of a speed sensor and it is signal conditioned to have pulses which given as Timer1 clock input […]
PC Based Digital Voltmeter Using PIC 16F877A
Posted on: 18 Nov 2022
This is a simple voltmeter which measures 0-5V at a precision of 4.8 mV. This is a simple design using inbuilt ADC of PIC 16F877A. PIC 16F877A have 8 channel 10bit ADC. This is a computer interfaced project. Measured voltage is output in serial interface software in computer. There is a serial interface circuit (MAX232) […]
Sending SMS Text Message using PIC Microcontroller – Flowcode
Posted on: 17 Nov 2022
Figure 1: Controlling and Monitoring devices with a Cellphone A GSM modem is a wireless modem that works with a GSM wireless network. GSM stands for Global System for Mobile communications, this architecture is used for mobile communication in most of the countries in the world. A wireless modem acts basically like the traditional dial-up […]
PIC Controlled Relay Driver using PIC16F84A
Posted on: 17 Nov 2022
Project Summary This circuit is a relay driver that is based on a PIC16F84A microcontroller. The board includes four relays so this lets us to control four distinct electrical devices. The controlled device may be a heater, a lamp, a computer or a motor. To use this board in the industrial area, the supply part […]
Design and Development of an Automated Home Control System Using Mobile Phone
Posted on: 16 Nov 2022
Abstract This paper presents design and development of an Automated Home Control System (AHCS) using mobile phone. A cell (mobile) phone acts as a modem for the control of electrical home appliances. This is achieved when the mobile phone number is dialed and an appropriate command button is pressed. The paper demonstrates how to develop […]
Single Pic Micro single shot bi stable Relay
Posted on: 16 Nov 2022
Project Summary Build yourself a single shot Pic Micro Controlled by stable Relay FEATURES 1. One touch activated for on or off 2. Open connections for other sensors 3. 10 -12 volt operation 4. Led indicators for on off status 5. Can be Rf controlled 6. Can be serially controlled 7. All code Flow charts […]
Microcontroller measures heart rate through fingertip
Posted on: 15 Nov 2022
Step 1: Sensor assembly The sensor unit consists of an infrared light-emitting-diode (IR LED) and a photo diode, placed side by side, and the fingertip is placed over the sensor assembly, as shown below. The IR LED transmits an infrared light into the fingertip, a part of which is reflected back from the blood inside […]