Announcement

Collapse
No announcement yet.

New tool to find short capacitors on motherboards : shorty with display

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • stj
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    looking closer,
    maybe we should run it at 3.3v
    then we can use a lithium cell instead of a 9v battery that may only be good for a few hundred mA
    maybe a 500mA cell from a disposable vape together with a usb charger/protection pcb

    either way, the BC557 has to go.
    a P-type mosfet would be better

    Leave a comment:


  • stj
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    hard to believe that package can give 1.2A
    i wonder how much copper groundplane it wants.

    Leave a comment:


  • clearchris
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    Sounds good to me, what do you think stj?

    Leave a comment:


  • Per Hansson
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    Well, you could use a regulator with a little bit better dropout voltage than 3000mV if you're going to power it from a battery I say!
    I was looking for a replacement to my ESR tester and came across this 1117 with 350mV dropout and rated 1.2A it is a pretty nice upgrade over a standard 1117 at least:
    ST LDL1117S50R: https://www.mouser.se/ProductDetail/...FiVf%2Fg%3D%3D

    Leave a comment:


  • clearchris
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    Originally posted by Per Hansson View Post
    It can apparently also have a uA78M05 regulator and that is only good for 500mA:
    https://cdn.badcaps-static.com/pdfs/...d83ec30a8b.pdf
    And sub in some chinese regulator to make BOM for a 3 usd board, there's your voltage sag. Can't say I'm surprised. I almost never use the on board power to run peripherals.

    We could easily use a 78s05 as stj suggested (in jest?). We probably need to change the nano power to use the 5v pin instead of the vin pin. It would probably be better to have everything use the same power source.

    Leave a comment:


  • stj
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    so we need a 78s05?

    Leave a comment:


  • Per Hansson
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    It can apparently also have a uA78M05 regulator and that is only good for 500mA:
    https://cdn.badcaps-static.com/pdfs/...d83ec30a8b.pdf

    Leave a comment:


  • clearchris
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    From the other thread, here's megaraider's 2c.

    "The current source problem arises from using the 5V output line from the Arduino Nano.
    As he wrote somewhere he couldn't figure out why the voltage (5V) dropped when the tips were connected. The LM1117IMPX-5.0 max. load current is 800mA.
    While that might seem to be enough it's not: one must take in account the Arduino ICs, display, DAC, Op Amp and tips current source overall power consumption!
    Therefore, replace that 5V line with a reliable 5V power supply."

    5v regulators are very common, I'm pretty sure I have multiple types on hand even.

    If that doesn't work, there is a schematic here for a series regulator, doesn't look that terrible. https://en.wikipedia.org/wiki/Linear_regulator

    It's entirely believable that these nano clones use underpowered regulators. I would really be surprised if you were able to run them at 100% of spec.

    Leave a comment:


  • stj
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    can you get linear regulaters operating at sub-volt range?
    these testers use very low voltage to avoid turning semiconductors on.

    Leave a comment:


  • clearchris
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    That doesn't sound insurmountable. Couldn't we slap a linear regulator on there and get the current required?

    Leave a comment:


  • stj
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    gerbers arent the issue,
    i could cad that up in an hour or so.

    the issue is Kripton changed the circuit because it couldnt provide enough stable current.
    and a full circuit with changes wasnt released.

    Leave a comment:


  • Erico1
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    I am a member of the forum where the design work is being discussed for the shorty with display.

    There is some recent activity on this project ( as of June 2022) in the thread.

    The OP in the EEVlog forum mentioned possible selling the Gerber file for the PCB and I am definitely on board with that.

    Leave a comment:


  • clearchris
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    Originally posted by badboydas View Post
    Yes you are right, but the code states
    "0x68 is the default address for all MCP342x devices"
    Not every one here would be a keen programmer.
    I have done some i2c work lately, and if I can't communicate with the chip, the first thing I do is scan for addresses, not to really check for the address, but to verify communication and wiring.

    Hopefully I'd have noticed the different address, but I can't say for certain I would have.

    Leave a comment:


  • badboydas
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    And the line underneath,yeah come on this is hard work
    uint8_t address = 0x69; // addresses do vary depending on smd code

    Leave a comment:


  • badboydas
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    Originally posted by clearchris View Post
    If there's a question of addresses, there are sketches included in the arduino gui where you can flash a program to the arduino and scan the i2c or spi bus for addresses.
    Yes you are right, but the code states
    "0x68 is the default address for all MCP342x devices"
    Not every one here would be a keen programmer.

    Leave a comment:


  • clearchris
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    If there's a question of addresses, there are sketches included in the arduino gui where you can flash a program to the arduino and scan the i2c or spi bus for addresses.

    Leave a comment:


  • badboydas
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    Anyone building Shorty should note that all MCP3421's are not equal, the SMD code dictates the address (which you would change in the code line 45)
    If SMD code is
    CAxx = 0x68
    CBxx = 0x69
    CCxx = 0x6A
    CDxx = 0x6B
    CExx = 0x6C
    CFxx = 0x6D
    CGxx = 0x6E
    CHxx = 0x6F
    some of you will have known this,some may not have

    I have still have not got it fully working but it is now talking to the MCP3421 @ address 0x69

    Leave a comment:


  • badboydas
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    That was my first mistake
    But this mistake was some how not copying and pasting the full code.
    After thinking about it a bit I came to the conclusion Kripton would not have posted code that didn't work, so knew it was my error somewhere.

    Leave a comment:


  • stj
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    you probably forgot to download and include the oled libs

    Leave a comment:


  • badboydas
    replied
    Re: New tool to find short capacitors on motherboards : shorty with display

    Forget I posted the above, I was trying to compile less than the full code.

    Leave a comment:

Working...
X