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 shuzhe

  1. S

    LM35 wif PIC18F458 and send to zigbee

    unsigned int temp_res; unsigned int h; void NumtoChar(char a) { unsigned char digit[3]; digit[0]=a/100; digit[0]+=0x30; a=a%100 ; digit[1]=a/10; digit[1]+=0x30; digit[2]=a%1; digit[2]+=0x30; Usart_Write(digit[0]); Usart_Write(digit[1]); Usart_Write('.') ; Usart_Write(digit[2]); } void main() {...
  2. S

    LM35 wif PIC18F458 and send to zigbee

    but i using mikroc, the code you give can use in mikroc?? sorry for asking too much question as i just start to learn the code
  3. S

    LM35 wif PIC18F458 and send to zigbee

    yup...i wan to convert to text before transmission...so is it correct??
  4. S

    LM35 wif PIC18F458 and send to zigbee

    float TEMP; unsigned int temp_res; void main() { ADCON1 = 0x00; TRISA = 0xFF; TRISD = 0X00; Usart_Init (9600); while (1) { temp_res = ADC_Read(0) >>2 ; TEMP= temp_res *(500/255); PORTD = TEMP; Usart_Write(TEMP); //sends signal delay_ms (1000); } } this is my...
  5. S

    LM35 wif PIC18F458 and send to zigbee

    can i ask that, if i connect the lm35 to port RA0, then ZIgbee to RD0, still need adc?? can someone provide the code?
  6. S

    LM35 wif PIC18F458 and send to zigbee

    can someone help me with the code? i am connect temprature sensor LM35 to pic18f458 and i need the code to convert the voltage to temperature from the temperature sensor...

Part and Inventory Search

Back
Top