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 Ernest Clyde Chua

  1. E

    help with pic16f877a and lm34 accuracy reading

    yes i like to see two digits after the decimal point.
  2. E

    help with pic16f877a and lm34 accuracy reading

    you can modify it as you please:-D
  3. E

    help with pic16f877a and lm34 accuracy reading

    i tried it but how can i read the voltage in mV heres what ive done sbit LCD_RS at RB4_bit; sbit LCD_EN at RB5_bit; sbit LCD_D4 at RB0_bit; sbit LCD_D5 at RB1_bit; sbit LCD_D6 at RB2_bit; sbit LCD_D7 at RB3_bit; sbit LCD_RS_Direction at TRISB4_bit; sbit LCD_EN_Direction at TRISB5_bit; sbit...
  4. E

    help with pic16f877a and lm34 accuracy reading

    i tried the code given in the links, it doesn't print anything i didn't alter the code and just assigned the lcd direction. why it does't print the "X11.223 Y4.567 " in the display? - - - Updated - - - i see float to string in the mikroc library can i turn an adc in to float and print it by...
  5. E

    help with pic16f877a and lm34 accuracy reading

    i read a thread in mikroc, sadly pic16 doesn't support sprintf
  6. E

    help with pic16f877a and lm34 accuracy reading

    i dont see sprintf in the library files for pic16f877a im using mikroc is there another way to get the float value of ADRead?
  7. E

    help with pic16f877a and lm34 accuracy reading

    thanks horace1 how can i change this to add accuracy of .1 because it increase as soon it hits .5 any idea? ADRead = (ADC_Get_Sample(0) * 500UL) >> 10; vDisp[0] = ADRead / 100; vDisp[1] = (ADRead / 10) % 10; vDisp[2] = ADRead % 10;
  8. E

    help with pic16f877a and lm34 accuracy reading

    hi im making a digital thermometer using lm34 and pic16f877a, heres the code sbit LCD_RS at RB4_bit; sbit LCD_EN at RB5_bit; sbit LCD_D4 at RB0_bit; sbit LCD_D5 at RB1_bit; sbit LCD_D6 at RB2_bit; sbit LCD_D7 at RB3_bit; sbit LCD_RS_Direction at TRISB4_bit; sbit LCD_EN_Direction at...
  9. E

    [PIC] PIC16f877a joining two strings in mikroc help

    i found a new solution but still something is wrong, it has spaces in between them how can i remove these spaces? heres the code d=12; m=0; IntToStr(d, dtemp); IntToStr(m, mtemp); txt[12]=strcat(mtemp,dtemp); LCD_Out(2, 1, txt[12]);
  10. E

    [PIC] PIC16f877a joining two strings in mikroc help

    hi im new to c and mikroc, im having troubles with joining two strings, can some one help\teach me how it is done? heres my code: d=12; IntToStr(d, dtemp); txt=strcat("0",dtemp); LCD_Out(2, 1,txt ); i cant compile the code what is wrong in my code? also im trying to print it on the lcd like...

Part and Inventory Search

Back
Top