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 suvaraj

  1. S

    [SOLVED] Help me perform concatenation operation!

    hi pic16f877a has 10 bit adc channel.u can select ADCON0,ADCON1 for operate adc result store location registers ADRESL and ADRESH. use this data=ADRESH; data=data<<8; //shift to left for 8 bit data=data|ADRESL; //10 bit result from ADC hope this helpful with regards
  2. S

    what is the pin function of pwm in pic microcontroller

    any one exaplain me what is the function of pwm in pic microcontroller?which area we use pwm ? thanks in advance
  3. S

    give an idea for gettinng pulse from ignitin coil and working with pic micro control

    hi to all in my project i'm using pic16f873a with hitech c compiler.i need my project to take a signal from ignition coil and to control a relay on/off using micro controller.any one help me for write coding in my project. thanks in advance
  4. S

    audio amplifier power descipation

    see this website **broken link removed** i think it may helpful with regards
  5. S

    How to control motor with sensor ?

    use adc channel.
  6. S

    How to control motor with sensor ?

    hi what a pblm occured in your coding? what type of sensor you r using? and cgheck ur coding if (sensor1=FALSE) is an assignment statement write if (sensor1==FALSE) and compile. with regards
  7. S

    eeprom data store problem

    in my project ineed to store a value in eeprom. i,m trying but the value not stored. my cooding: EEPROM_WRITE(oxoo,count); EEPROM_READ(0x00); h=EEDATA; is this correct in hitech c? help me, thanks in advance
  8. S

    adc value reading and output problem

    i'm unterstand but a little bit of doubt will occured for using two adc channel.so i need a aexample program for use two adc channel. that"s way i ask
  9. S

    adc value reading and output problem

    giv me one example adc program for using two adc channel in one program. thanks in advance
  10. S

    adc value reading and output problem

    hi thanks to u but i can't unterstaand theese lines (result=result<<8; //shift to left for 8 bit result=result|ADRESL; //10 bit result from ADC).pls explain and how to use another one adc channel in this program.? pls explain me. thanks in advance
  11. S

    adc value reading and output problem

    void adc_init()//initialize adc { ADCON0=0X01; ADCON1=0X2E; } void adc_read()//read's adc value { GODONE=1; while(ADGO==1); data=ADRESH; } what i do a mistake
  12. S

    [SOLVED] LCD Software Help PIC 16F877A

    its correct lcd read write pin takes low means write data to lcd.high means read data.your circuit connected to low signal.so lcd write data continiously.when the pin is set to high means its display ur codings data.
  13. S

    adc value reading and output problem

    hi to all in my project im using pic16f873a,hi-tech c compiler.im reading adc value data=ADRESH;.and i but the adc i/p value 2v means 2000 mv/4.88mv=adc value is 409. im use the 409 value means im not get o/p. if(data>=409) { led=0; led1=1; } again i divide 4 409/4=102 this value used...
  14. S

    [SOLVED] ccs compiler plugin and mplab IDE

    which language you used to write your codings? assembly or c?

Part and Inventory Search

Back
Top