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 dav456

  1. D

    How to revive a Arduoino Uno board?

    The cable that coonects the USBASP programmer with the arduino noard has 10 pin while arduino only has 6 pin so I need a converter
  2. D

    How to revive a Arduoino Uno board?

    So I need 1.Atmega 328p 2.USBASP Programmer 3.10 pin to 6 pin converter 4.USB A to B cable anything else?
  3. D

    How to revive a Arduoino Uno board?

    I have the arduino board.Is that not enough?
  4. D

    How to revive a Arduoino Uno board?

    Do I need some kind of bootloader?
  5. D

    How to revive a Arduoino Uno board?

    I have gotten a used Arduino uno board from a friend but he used up the Atmega 328p in another project so it does not have the microcontroller or any usb cable or power supply.I just have the board. What parts do I have to buy to use it again?
  6. D

    Can you connect an AC load to a 5V DC relay?

    I have made a 8051 circuit which will turn on/off a 5v dc relay according to to sensed temperature. currently the relay has a 12v input and drives a 12v lamp. can I connect it to 220v ac and drive something bigger?
  7. D

    8051 Digital Thermometer Working in Proteus but not working in real life.

    I made it.Its not on the internet.
  8. D

    8051 Digital Thermometer Working in Proteus but not working in real life.

    What do you mean by ADC reading code? I posted the assembly language program.Is this ADC reading code a separate thing?
  9. D

    8051 Digital Thermometer Working in Proteus but not working in real life.

    org 0000h mov p1,#0FFh mov p0,#0000h Back:setb p3.6 clr p3.5 mov r3,#255 loop: djnz r3,loop setb p3.5 here: jb p3.4, here clr p3.6 Delay:mov r0,#08 loop2:mov r1,#255 loop1:djnz r1,loop1 djnz r0,loop2 acall Temp_Display ljmp Back Temp_display: mov a,p1 mov b, #010 div ab swap a add a,b...
  10. D

    How to covert 8 bit binary to 8 bit BCD in 8051 assembly language ?

    I connected In+ through RC filter 100ohm and 1nf The vref is already connected to voltge through pot still not working
  11. D

    How to covert 8 bit binary to 8 bit BCD in 8051 assembly language ?

    yes r14 was set to 10k.I set it to 330 and it is now showing 330. Ok but the circuit is still not showing the temperature.It is always showing 96. I have debugged in Keil and have seen than 1111 1111 gives value of 96. So the 8051 is always getting input of 1111 1111 and converting it to 96...
  12. D

    How to covert 8 bit binary to 8 bit BCD in 8051 assembly language ?

    I have modified the circuit to act as thermometer using ADC0804 and LM35. Here is the code I have written ORG 00H MOV P1,#11111111B // initializes P1 as input port MOV P0,#00000000B // initializes P0 as output port MAIN: CLR P3.7 // makes Cs=0 SETB P3.6 // makes RD high...
  13. D

    How to covert 8 bit binary to 8 bit BCD in 8051 assembly language ?

    D5 current is 3.2A - - - Updated - - - d5 current is 3.2A
  14. D

    How to covert 8 bit binary to 8 bit BCD in 8051 assembly language ?

    It is working now.There was some roblem with vsource.It was not working. I put 330ohm resistors. The VCC pins of the ICs are hidden. How do I connect it to a capacitor.They are directly connected to power rails.
  15. D

    How to covert 8 bit binary to 8 bit BCD in 8051 assembly language ?

    ORG 00H ORG 00H MOV P0,#00000000B // initializes P0 as output port mov r2,#00011111B MOV A,r2 // moves the digital output of ADC to accumulator A MOV B,#10D // load B with 10D DIV AB // divides the content of A with that in B swap a add a,b mov p0,a...

Part and Inventory Search

Back
Top