Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by sumitbhut

  1. S

    pic microcontroller port pins changing

    hi svhanu, example code for I2C Master....PIC16f877A #include<pic.h> #define _XTAL_FREQ 10000000 void lcd_cmd(unsigned char cmd) { PORTB=cmd; PORTDbits.RD0=0; PORTDbits.RD1=0; PORTDbits.RD2=1; __delay_ms(1); PORTDbits.RD2=0; } void lcd_data(unsigned char dat) { PORTB=dat...
  2. S

    DHT11 temp and humidity sensor with PIC16f1829 in MPLAB code problem

    Hi jean, i m using this code for only bit writing then bit reading and show the read bit display in terminal.....but only two bits read.... #include<pic.h> #include<stdlib.h> #include<stdio.h> #include <time.h> #define _XTAL_FREQ 32000000 //#define DHT PORTAbits.RA2 #pragma config FOSC =...
  3. S

    DHT11 temp and humidity sensor with PIC16f1829 in MPLAB code problem

    Hello, i m read humidity and temperature from a DHT11 and display it on a UART terminal with a PIC microcontroller(PIC16f1829).The start signal is supposed to make RA0 low for 25ms, then high for 40us, then it gets configured as an input and waits for the response signal from the DHT11.But...

Part and Inventory Search

Back
Top