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 otuzsubat

  1. O

    MAX 7219 inerfacing with PHILIPS 8051 Software issue SPI PROTOCOL

    if you want to use SPI, try MAX 7221.
  2. O

    led control with microcontroller

    hi, i have to design a circuit which will control 114 leds. these leds must have different 4 current steps to change brightness. 4 current level is 5ma, 10ma, 15ma and 20 ma. design rules are below 1. 4 current level are 5ma,10ma,15ma,20ma. 2. each led can be turned on/off individualy. 3. when...
  3. O

    i need a power supply circuit

    Hi, i need a power supply circuit. I will use it for; 1- Obtain 5V 1A for microcontroller circuit 2- Obtain 12V 1A for backlight 3- Obtain 24-29V 5A for drive dc motors 4- Obtain 100mA constant charge circuit for charge 24V battery My circuit must work with AC power source and 24v batteries. I...
  4. O

    LED (optosensitive) MATRIX KEYPAD

    try this sources. https://www.edn.com/design/power-management/4316948/LED-senses-and-displays-ambient-light-intensity https://cs.nyu.edu/~jhan/ledtouch/index.html https://projects.dimension-x.net/technology-and-projects/ledsensors https://www.merl.com/publications/TR2003-035/
  5. O

    Digital Clock PIC16F628A + RTC DS1307 + 7 Segment Multiplexing Problem..

    for example, it is 23:35:14 (hour:minute:second) the contents of ds1307 is 0x00: 0001 0100 (1 and 4 in bcd format) 0x01: 0011 0101 (3 and 5 in bcd format) 0x02: 0010 0011 (2 and 3 in bcd format) if you read these addresses you obtain 20 for seconds 53 for minutes 35 for hours to obtain real...
  6. O

    Digital Clock PIC16F628A + RTC DS1307 + 7 Segment Multiplexing Problem..

    read the datasheet of ds1307. you will see that at it holds minutes at 0x01h address. the lower 4 bits for minutes and the other 3 bits for 10 minutes. and the last bit is empty. after you read minute data from ds1307, you must reformat it. Do{ minute=(minute>>4)*10+(minute&0x0F)...
  7. O

    Digital Clock PIC16F628A + RTC DS1307 + 7 Segment Multiplexing Problem..

    DD0 = Count%10; // Extract Ones Digit DD0 = mask(DD0); DD1 = (Count/10)%10; // Extract Tens Digit DD1 = mask(DD1); DD2 = (Count/100)%10; // Extract Hundreds Digit DD2 = mask(DD2); DD3 = (Count/1000); // Extract Thousands Digit DD3 = mask(DD3); change this codes please. ds1307...
  8. O

    what is the name of this connector?

    what is the name of this connector?
  9. O

    what is memory banking benefit

    i think there isn't any benefit of banking. when you writing program, you use extra codes to change memory bank.
  10. O

    Pcb capacitive sensor

    Hi. i need a pcb type capacitive sensor, which will detect any object on it. I am planning to put it on a pcb, then i will put a 10mm glass on the sensor. It must have adjustable sensitivity. Do you know such a sensor. **broken link removed**]
  11. O

    [SOLVED] i need programmer suggestion

    i preferred pickit 3, because of low price. thank you for your advice.
  12. O

    [SOLVED] i need programmer suggestion

    i will use PIC24HJ256GP610 in my project. which programmer do you suggest me?
  13. O

    IR object sensor design

    Hi. i need an Ir object sensor. For this i designed receiver and transmitter circuits. Transmitter circuit will produce continuous Ir pulses. When an object comes in front of sensor, it will reflect IR light to the receiver. When receiver detect Ir signal, its output will be low (logic 0). I...

Part and Inventory Search

Back
Top