digital

DIGITAL VOLTAGE

DIGITAL VOLTAGE PROBE PIC18F242

Hello In this article we will talk about Making Voltage Probe. First, let me explain what is the voltage probe. Voltage Probe, displays the amount of voltage at one point. In addition to a…Ā Electronics Projects,Ā Digital Voltage Probe PIC18F242Ā “microchip projects, microcontroller projects,Ā “ Hello In this article we will talk about Making Voltage Probe. First, let me […]

DIGITAL VOLTAGE PROBE PIC18F242 Read More Ā»

IR Digital Thermostat for FAN Schematic

IR Digital Thermostat for FAN

Introduction Ā This circuit measures temperature in Celsius scale and displays it on an alphanumeric LCD screen When temperature rise to 40 C an alarm is activated and at the same time a relay is also activated which drives a fan to keep the temperature at a level. Another feature of this circuit is that you

IR Digital Thermostat for FAN Read More Ā»

Analog to digital 8 bits For CSS Compiler

  #include <16F877.h> #device adc=8 #FUSES NOWDT ,XT #use delay(clock=4000000) #include <Lcd_4bit.c> int8 value; void main() { setup_adc_ports(AN0_AN1_AN3); setup_adc(ADC_CLOCK_DIV_2); setup_psp(PSP_DISABLED); setup_spi(SPI_SS_DISABLED); setup_timer_0(RTCC_INTERNAL|RTCC_DIV_1); setup_timer_1(T1_DISABLED); setup_timer_2(T2_DISABLED,0,1); set_adc_channel(0); set_tris_d(0x00); set_tris_A(0xff); Lcd_init(); while(true){ set_adc_channel(0); delay_ms(10); value = read_adc(); // 0-1023 Lcd_row_col(1,0); Lcd_putc(“setpoint=”); hex_bcd(value);lcd_row_col(1,9);sent_Lcd(); delay_ms(50); } }

Analog to digital 8 bits For CSS Compiler Read More Ā»

Digital clock ds1307 using PIC microcontroller

Digital clock ds1307 using PIC microcontroller

Step 1: COMPONENTS REQUIRED 6Ā components neededĀ : 1. MicrocontrollerĀ (I have used AT89S52-8051 family), any programmable microcontroller can be used. 2.7 segment display 3.Crystal oscillator (12MHz) 4.Capacitor (10uF, 33pF/22pF) 5.LEDs 6.resistances (330 Ohm) 7.buzzer (piezo) 8.push switches And I’m not including soldering iron, wire, flux….. electricity !!! help me out šŸ™‚ Step 2: Circuit Diagram Ā  This

Digital clock ds1307 using PIC microcontroller Read More Ā»

Simple Digital Current Meter DCM using PIC microcontroller Schematic code Proteus simulation

Simple Digital Current Meter (DCM) using PIC microcontroller (Schematic + code + Proteus simulation)

This post would provide a working example of how to make a simple Current Meter (DCM) using 16bit PIC microcontroller and a series shunt resistance. We have very precise ammeter current measurement with a 10bit ADC and with a tolerance of Ā±10mA. You may download code and Proteus Simulation from the download section at the

Simple Digital Current Meter (DCM) using PIC microcontroller (Schematic + code + Proteus simulation) Read More Ā»

High Accuracy Digital Temperature Sensor STS3x

High-Accuracy Digital Temperature Sensor STS3x

The STS3x is Sensirionā€™s newest high-accuracy digital temperature sensor series. The STS3x temperature sensor utilizes the industry-proven CMOSensĀ® technology and wins over users with its increased intelligence, reliability, and improved accuracy specifications. The functionality of Sensirionā€™s new STS3x temperature sensor includes enhanced signal processing, two distinctive and user-selectable I2C addresses, and communication speeds of up

High-Accuracy Digital Temperature Sensor STS3x Read More Ā»

PIC16F877 based controllable digital clock using LCD display

PIC16F877 based controllable digital clock using LCD display (Code+Proteus simulation)

This PIC16F877 microcontroller tutorial answers the question, ” How to implement a controllable digital clock using PIC16F877 ? ” Using PIC16 simulator (Proteus) you can verify this digital clock code and change it according to your needs. Using three push buttons (As shown in figure below) you can adjust time as you desire. This code

PIC16F877 based controllable digital clock using LCD display (Code+Proteus simulation) Read More Ā»