First 6 latch boards for scrolling LED display

Jim Harvey and I got together at the space 2/16 to test and install the first 6 columns’ worth of latch boards.  First step was to test them.  That was a very good idea, since there were some bad traces I’d forgotten to fix.  It would have been really annoying to discover the problems only after the boards were soldered into the display!

I made up a sort of ‘bed of nails’ tester that allows an Arduino to power and drive the inputs to the latch, and connects LEDs to its outputs to see the results.  I needed 7 data bits in (for the 7 LEDs in the latched column), a clock, and of course power and ground.  Trying to simplify the connections to the Arduino, I chose to use D0-D7 for the 8 data bits, since they’re all on one header.  Since Do/D1 are the serial I/O pins, I can’t use serial I/O while using this tester.  Setting those pins as output does allow them to be used for normal I/O, though.

I laid the board out by starting with the latch board layout and putting pads to solder the ‘nails’ to as wires or rectangles on another layer.  When they looked like they were in reasonable places, I deleted the normal top and pad layers that made up the real board.

The first oops was that I pictured the LEDs on the non-foil side of the board, but laid the solder pads out so the foil was on top.  Fine, so the LEDs will sit up in the air.  I figured bending all the pins (0.025″ square pins salvaged from some old wire wrap board) would be a hassle, and I was right.  I got them pretty close, and Jim H lapped them on some emery paper and got their tips a little closer to coplanar.

Second oops was when I realized we’d need a handle to press the tester down on the board under test.  I bent a little acrylic handle and epoxied it on, but located it where it was convenient instead of where it needed to be:  You have to put pressure at sort of the geographic center of all the pins, not over where I glued the handle on.  Shoulda seen that one coming.  We ended up just pressing on the board with fingers to try to make all 17 contacts at once.  Here’s Jim trying to do that (and ignoring the handle).

The arbitrary test pattern code did 2 cycles of cylon 1 LED-at-a-time sweeps, followed by 2 cycles of alternate LEDs on.  The latter was a test that the latch actually latched, as I wrote the data, kicked the clock, then wrote zeros of data before sleeping.  The code didn’t work first try, as I’d reordered a couple of pins as a tradeoff in the PCB layout but forgot to do it in the code.  Here’s a clip of what it looks like with the final code and when you actually get all the contacts to make on a good board:  LatchTester1

Of course all the boards didn’t work first try.  (That’s why we test!)  We found a few bad (reflowed!) solder joints, which I fixed using solder-loaded braid to apply solder.  Jim found some hairline disconnects in some traces by inspecting very closely.  We soldered fine wires across those, and finally got all the boards working.  Time to install!

Jim had made a little jig he hoped would help hold the boards in place while we soldered their big pads to the LED anodes.  It turned out we could hold them quite well with one just clothes pin (which Jim had cleverly brought along), so we ended up doing that.  Here’s the first board soldered in place:

We hooked it up with the latch tester code and sure enough, the first column of LEDs in the display danced the tester dance.  Encouraged, I put the other 5 boards in.  Here’s a picture of soldering in the data bus that provides parallel data to all the boards.  Yes, it’s labor intensive.

The original design had four 74154 1-of-16 decoders providing an (active low) column select.  We planned to use that to clock the latches.  Here’s the first crude wiring of those latch clocks.  Unfortunately – probably partly because we digitalWrite() the address bits out one at a time – the latches don’t reliably latch the correct data.  (As the address bits change one by one the 74154 selects probably go active on unintended columns.  And running fast TTL pulses on those loose wires is asking for trouble as well!)  So while the LEDs flashed around with all 6 boards in place and a simple scrolling pattern in the Arduino driving it, they clearly didn’t do what they were supposed to do.

So the next step is troubleshooting the addressing/latch clocks.  I have a little USBee logic analyzer that would let us look at what actually shows up on the select lines, but I’m kind of afraid we’ll need to come up with a whole new 1-of-64 addressing scheme that guarantees clean clocks.  I won’t even bother to make up any more latch boards until we can demonstrate that we can get those good clock pulses.

Update 2/17/12:  Oops – tests of all 6 boards were invalid.  I forgot to provide power to the 74154s in the display box!  It’s always nice when finding out your tests were invalid is a good thing.

We should be able to provide clean 6-bit addresses to the ‘154s if we use 6 bits of 74373/4 octal latch to buffer the bit-by-bit changing address the Arduino puts out and clocking it out when we’ve written all 6 bits.  That’s a pretty simple hack, and I even have some ‘373s and ‘374s.

Update 2/28/12:  Went to the space 2/23 and after Eric’s excellent Christmas (and Halloween) light display talk, made some good progress. First was rewiring the 6 input lines to the ‘154 board.  I chopped down the silly long ribbon cable, kept the 6 pin male end, and connected nicely to the pins on the blue board.

Next was a more proper power interconnect.  A terminal block to connect to an external supply now powers both the 154 board and the latch boards (and their LEDs).  (Schlocky picture, but that’s how we learn.)  A little hot melt and it all stays in place.

With the cabling a little more sensible, I tested using a direct port write to change the state of all 6 address lines at once (instead of writing several invalid addresses as the bits changed one by one with digitalWrite()).  After several rounds of fixing stupid coding, it almost worked!  The first hard coded pattern was just 2 sawtooths (sawteeth?) scrolling in opposite directions. But column 1 just kind of sat there with a couple of LEDs always on.  Investigation showed that when we were inspecting the boards for bad traces, on the board with visible lengthwise hairline opens, we fixed the traces for data, but ignored the fact that the opens went thru the clock pad.  When I soldered the clock line to the pad, Murphy made me solder to the part separated from the trace that went to the chip.  It just barely worked (but worked well enough the first night that Jim and I both watched correct patterns on all 7 LEDs).  Then while we weren’t watching, it failed.  I resoldered the clock line to the side of the pad connected to the chip, and it worked fine.  Here’s a clip.  Sorry about the orientation.  I wasted way more time than I should have trying to fix it.  (I could rotate it but then couldn’t fix the aspect ratio.)

Encouraged, I hand coded pixels for “W88”.  Here’s a clip.  It’s not perfect (the display – we know the clip is sideways and crappy), but it’s pretty clearly working. Some columns sort of fade and blink.  That’s the real display, not a video artifact.

The interesting surprise is that the low resolution (7 pixels vertical and 0.5″ pixel pitch) makes the display kind of disappointing.  I suggest making up (and testing and installing) maybe 10 more boards so we can get at least a minimal idea how it will actually look.  At that point we can make the call whether it’s worth all the effort to populate the other 48 columns.  It will definitely have a ‘retro’ look, but I don’t know whether that will save it from just looking kind of pathetic.  That evaluation is for a little later.

Update 3/1/12:  More intel on the flakiness on the display: I slowed down the scroll rate, and there’s one column that doesn’t work right (4th from left as seen from viewer side).  Sometimes it doesn’t latch data in, sometimes it’s dim.  I changed the address timing so each addr stayed on the lines for half a second.  Armed with only an LED and a resistor, I watched the clock lines on a couple of boards.  All behaved reasonably except the bad board.  For that one, the latch level (LED brightness) was normal except when it was that board’s turn to latch in some data.  The data didn’t show up on the output LEDs, and the clock voltage was visibly lower (LED dimmer) for that column’s cycle.  I swapped (resoldered) column select/clock lines between that board and a neighbor.  The bad behavior stayed with the board, not the clock line.  So there’s clearly something bad on that board.

So we have an INPUT of a chip that can somehow pull the active output of a 154 down enough to make a visible difference in an LED.  And that board never lights its target LEDs as bright as it should, and doesn’t always latch data in (or at least doesn’t display it on its output LEDs).  What kind of failure or short on the board could make the clock input draw a lot of current?  Sorry, didn’t feel the temperature of the chip – shoulda.  And it doesn’t always pull a high level down – apparently only when it has to light its LEDs.  The only test pattern we’ve looked at is all LEDs on.  It would be interesting to see if it was less bad for fewer LEDs.  For reference, here’s the board layout.

OK – what if the chip wasn’t getting power and was effectively being powered by current drawn into that clock input?  Is that even possible?  High draw from a bunch of LEDs (in addition to powering the chip itself) might well pull that 154 output down.  I guess those are the next things to look at.  Unfortunately, I don’t have a spare board (yet) to explore behaviors like that.

Trying to get a board out from the middle (boards in place on both sides) with the data bus laid into slots on the top of the board will be a challenge.  It would be embarrassing if it was just a cold solder joint on the +5 line for that board, but I guess that would be better than having to pull the board out.


Posted in Scrolling LED, Workshop 88 Stuff | 11 Comments

Reflowing LEDs/resistors on heated build platform

The heated build platform being built for the Makerbot at W88 should help avoid problems with prints warping.  It didn’t ship with the optional LEDs (and resistors) to make it look cool, but I had some and offered to install them.  Another opportunity for a hotplate reflow!

I just received some fresh solder paste and tried it on this.  It was MUCH easier to apply than the 5 year old stuff I used the first couple of times.  I’m getting a pretty good feel for how big the paste blobs should be.  Took just about 30 minutes to apply paste and place 25 LEDs and 26 resistors.

The reflow went as smoothly as the others.  I tried to get a video as the solder melted, but the change was barely visible.

I dug out a power supply and tested it and all the LEDs lit fine.  Another successful reflow!

 

Posted in Reflow soldering, Workshop 88 Stuff | Leave a comment

(Re-)Rooting my Nook Color

I got a Nook Color from some deal site (maybe 10/11?) partly as a nice portable book reader for Lauren and partly to be rooted into a general purpose Android tablet for both of us.  I rooted it and it mostly worked for several months, then wouldn’t boot.  I don’t remember what all I did to it, so as I rebuild it now I’ll record the details here so if it dies again I’ll have some clue about its history.  I’m not particularly a NC guy, so these notes are not likely to be useful to anybody else.

When it would no longer boot (went into a loop drawing the pretty nook color logo) I restored to factory default by holding the n button while powering up (I think now this is actually recovery) and maybe accepting a safety question.  It came up as new, showing the intro video.  I had to reregister, give it time zone, my wifi passphrase, etc.  It came up with firmware 1.2.  Current seems to be 1.4.1, and that seems to be rootable, so I downloaded the update from B&N, copied it via USB to the NC and let it notice and update itself.

From this post I downloaded a whole CWM image and flasher.  That and all the other Nook stuff is in Downloads\NookRootStuff (not Installs!).  Wrote 2 GB SD card, but couldn’t get NC to boot from it.  Tried again, then with a 4 GB card – all fail.  Then pulled down a 4 GB image of 3.2.0.1 TWRP from this link and wrote (using win32 Disk Imager, as I’d used for all the other tries).   Took a very long time to write the images.

That installed and booted with the little skull and crossbones.  TWRP provides a touchscreen interface.  Used it to install ManualNooter 5.12.20.  That seemed to work OK.  Put a couple of apps on, but still lots claim not compatible.  Haven’t figured how to install Amazon Appstore.  Found out:  go to Amazon, enter email addr and they send you a link.  I’ve downloaded it, but not installed on anything yet.  But 1.4.1 blocks sideloaded apps (checkbox in setup for “allow apps from other sources” or something is no longer there).  That’s not acceptable – so 1.4.1 is out.

I tried a factory reset (wrong: just a recovery reboot) by holding power and home and answering yes to do you want to reset and are you sure type questions with the home button.  Looked like it reloaded, and came up with an intro video and setup screens.  But it was still 1.4.1.

Did 7 aborted boots – hold power til it just flashes black screen, let go and hold 12 sec (while Read Forever is on black screen).  It said clearing data then Installing…  Restoring original factory image.  It restarted – Reading Forever, gray n, white page nook color with highlight scanning back and forth.  Got brunette in blue for video/setup.  It’s back to 1.2!  (And wifi is off, so no unwanted updates ’til I can get it rooted and protected.)

I’m pretty tempted to just put Cyanogen (7?  is there a 9 that’s later/greater?) on, since it doesn’t really need much B&N capability.  There are B&N as well as Kindle readers for Android, so I don’t think I’ll lose much.  (Latest stable is 7.1, so that’s what I ended up with.)

I’m a little concerned about performance if I just boot CM from SD, so I’d like to write it to (flash? in) the NC.  I don’t understand what all areas there are to write stuff to.  There must be a main place it boots from, and there’s apparently a “recovery” place as well.  And it obviously can get back to factory (1.2 here), so there must be yet another image somewhere.

There’s clearly a “recovery” place – still don’t know where.  ROM manager does know, and will flash a recovery ROM.  But you need to root to run ROM manager.  OK – copied manualnooter 4.6.16 to the 4G bootable SD.  4.6.16 is the one that’s needed for rooting 1.2.  Booted to the skull/crossbones “LOADING” SD image (TWRP) and installed MN4.6.16 successfully.  Booted, ran ROM manager.  It said I needed CWM Recovery installed, so I said do it.  Success.  Tried to download CM7.1, but ROM manager said to upgrade to pro to find ROMs.  Told ROM Manager to partition (2GB) SD.  It did, but booted into CWM Recovery to accomplish it.

Downloaded CM7.1 latest to PC, copied via USB to SD in Nook (drive N:).  Told ROM manager to install ROM from SD.  In its dialog, checked boxes to back up existing ROM (1.2 rooted), clear Dalvik and data.  It rebooted to CWM Recovery and that did those steps.  Took maybe 10 minutes.  But then while trying to install CM it said there was a problem with the file and the update failed.  Checked md5 sum both on PC an on 2GB SD – both OK.  Tried to reboot, but Nook just hung on gray n screen.  Copied CM zip to 4G bootable TWRP SD, said install CM.  It did, and when rebooted came up in CM!

Tried a couple of times to boot into recovery with power+n, but always just booted normal to CM.  Used ROM manager to flash CWR (again?) – said OK.  Used RM to boot to recovery, and sure enough it came up in CWR.  Why doesn’t power+n work? So probably the first flashing of CWR (through RM) worked – I just didn’t know how to boot to recovery.

I’ve used CWR (from SD), but the touch interface in TWRP is nicer, so I’d like to have that instead.  Put a zip for “TWRP as recovery” on SD, used RM to boot to recovery (CWR).  Told it to install TWRP zip – OK.

Read you can get into boot manager with n after power.  Did that, got nice boot manager screen.  It knew about recovery and alternate recovery.  Setting that to boot to recovery it came up in TWRP!  I hope there’s a compatible command line interface or however RM uses recovery so RM can still do its thing (though it expects CWR).

Installed a bunch of apps, including Titanium Backup.  I think I backed up everything.  Nook is now really very functional – including weather, market, calendar, Toodledo (with a fast entry app I didn’t know about before!), password manager – most everything that’s on my phone.

Haven’t tried sideloading yet.  Only app I’m aware of wanting is Amazon app store.  I have the file.  I’ll leave that for another day.  This whole process has taken a LOT of time.  Yeah, I’ve learned a bunch, and I guess I’m happy to have not had to pay top dollar for a ‘real’ tablet, but it was really expensive.

Current state of SD is: 2G is formatted useable by Nook, has Titanium backup, various other files.  4G is bootable to TWRP, has various files on it.  More sensible would be to rebuild 2G as the bootable recovery card and reformat the 4GB (I suspect to fat32) so it’s useable as storage on the Nook for books etc.  I have all the files to do that in Jim\Documents\Downloads\NookRootStuff.  But I’ve spent enough time on this for today (or this month).  At least it works now.

Posted in Miscellaneous | Leave a comment

Reflow hot plate calibration

While the first few reflow attempts using the “turn it on, wait ’til the solder is shiny, take the board off” approach have more or less worked, it would be nice to see if we can come closer to a  proper time/temp reflow profile without too much trouble.  (Or at least know how far off from ideal we were.)

I assumed the hot plate was able to heat up considerably faster than the desired profile, so I hooked up a solid state relay I could turn on and off with an Arduino to control power to the hot plate.  (Yeah, it should be in a box.  But this is just for a quick test or 2.)

The first step is to see how that completely simplistic approach compares to a real profile.  Here’s the ramp-up part of what the thermocouple interface measured, along with a sort of typical profile:

Very interesting.  The raw hot plate hits pretty close to a couple of the profile points.  And it never ramps up faster than the profile, so the AC controller isn’t really needed.  Guess I should have believed the bit about “The first step…”.

OK – the rate of initial ramp up to the soak plateau isn’t too critical, and the 2C/sec rate shown is sort of an upper limit.  Using “whatever the hot plate will do” as the ramp up rate, a more appropriate picture would move the the profile line starting at the beginning of the soak phase:

We’re really shorting the soak region, and we can’t make the sharp spike up to reflow.  What if we at least flatten out the curve some by turning power off at – I dunno – maybe 100C? and turning it back on maybe 30 sec later?  I guess I can make use of that AC controller after all.  OK, here’s the logic:
– power on ’til temp>=100C
– power off for 30 sec
– power on ’til temp>=200C
– power off forever
Oops – can barely see the “soak” time – let’s tweak some more:
– power on ’til 60C; off 100 sec; on ’til 160C; off forever

(I was impatient and that one started at almost soak temp so you can’t see the initial ramp up.)  Rats.  It looks like the frequency response is way too low to shape the curve much.  The main culprit is probably the thermal mass of the aluminum plate, but I really want the plate to provide uniform heating of the PCBs.  I suppose I could just use a smaller, thinner plate.  The well for the TC would be a lot harder on a piece of 1/8″ aluminum…

If I put a fan on it, the “coast” time would be less, sharpening the knee at soak start, but the burner would have to work harder to heat it all up, so the rate of temp increase would also go down.  Ugh.  I suppose if we power-controlled the fan so it was only on when power to the burner was off…  Yeah, it wouldn’t take any extra parts or pins (besides the second solid state relay) if I just connected the fan relay between the current relay drive pin and +5 instead of gnd, thus inverting the logic.  Ugh.

OK, let’s try 2 things: smaller, thinner aluminum plate (3.75 x 5.5 x 0.05″) and a fan when heater power is off.  Hmm – big difference.  I manually controlled the fan (several cycles) to keep temp about even during soak phase.  The shape looks a lot more like what we want.  Of course the TC was on top of the plate and directly in the fan breeze, so its temp was probably more strongly affected by the fan than the plate was.

Here’s the 1/4″ plate but with the fan.  Again manual fan control, but I turned it on just at start of soak and only turned it off several seconds before soak ended.  The burner can only raise this one’s temp a deg/sec, while the thin plate can go 2 deg/sec.  But  we still see something much more like the desired profile shape.  The down side is that a fan anywhere near the top of the plate will cool the tall components on the PCB the most, creating vertical thermal gradients – exactly what the soak phase is designed to avoid!  I suppose if I raised the whole thing up, cut a big hole in the bottom for a muffin fan and cut out the drip pan under the burner so air could blow UP on the burner and bottom of the plate, that would avoid cooling the PCB.  And added a second solid state relay and some more logic to optimize its on/off times…

So it looks like it would be possible to implement a soak phase.  But the real question is:  How much trouble is it worth to get a more proper temperature profile?  I don’t know. 🙁

Posted in Reflow soldering | Leave a comment

Thermocouple interface

I’d like to get a little more familiar with the time/temperature behavior of the hot plate reflow setup before I try any more real boards, so I need a recording thermometer to do some testing.  I have some shiny new thermocouple wire and found a MAX 6675 K-type thermocouple interface IC (with reference junction temperature correction) that talks SPI for $2.50 and free shipping on Ebay.  Ultimately I’d like to use that read only 8 pin SOIC IC in a temperature controller, but in the short term I just need something so I can read it from an Arduino.

And bless the Arduino community’s heart, sure enough there’s a library already done to read that chip.  It provides (in addition to the constructor) one function: read_temp().  You tell it what pins the chip is connected to and it returns a float with the temp.

I laid out a minimal breakout board with just the IC, screw terminals for the probe, and a 2×3 header to match the ICSP header on my Duemilanove.  I’d been underwhelmed by that connector initially, but have since used it to reburn the bootloader, and now as a quick and dirty I/O connector.  It has Vcc, Gnd, and 3 digital I/O bits available – ideal for this application or various other mini-shields.  (I’ve used the same connector on a Tiny4313 in a similar fashion.)  And when the time comes to build a controller, I’ll unsolder the female header, solder in some wires, and connect it to the new controller board.  (Hmm – I suppose I should have enough confidence in my SMT rework skills by now that I’d be willing to remove the chip from this first breakout board and move it to a properly laid out controller board.  We’ll see.)

I found a bit of board material in the scrap pile just the right size for this little breakout – no cutting required.  My etch bath is currently very busy dissolving more copper to increase its volume, but it should be available to etch this board very soon.

The thermocouple wire is quite heavy – 0.030″, 20-21 ga.  The outer insulation is clear dark orange – quite reminiscent of the Kapton tape used in the hot end of the Makerbot.  I stripped and twisted some and tried to weld it with a little butane Portasol torch.  No luck.  It got pretty bright red, but didn’t melt.  The flame temps of butane and propane are almost identical, so even a larger propane torch shouldn’t do much better.  <testing…>  Nope, no difference.  And then I tried with my MAPP torch cranked all the way up – no joy there, either.  It got bright yellow and did discolor the insulation a little more, though.  Now I’m not quite sure what to do.  I guess there’s the battery tab welder.

Hmm – or silver solder.  Since the law of intermediate metals says it doesn’t really matter what other metals are there as long as they’re at the same temperature, I think that shouldn’t hurt accuracy too much.  I fluxed the twisted ends with my usual brazing flux and tried to silver solder them in a propane torch flame.  While the silver solder melted easily, it didn’t even begin to wet the metals.  (A drop of the molten solder did, however, burn a hole in my laminate-topped bench.  Normal solder – which I routinely fling off the end of a newly tinned iron tip onto that surface – flicks off with a finger nail without a trace.)

I cut off those old abused ends and started with fresh wire, twisted and fluxed.  The solder wet the metals immediately this time.  I have a junction!  Now for the board.

The etch bath is still at ~4 g/l Cu+1, so it’s not finished regenerating after all the new copper, but it should work.  It took a little over 30 minutes to etch the little board (usual time for larger boards with fully regenerated etchant is ~20 mins), but it came out fine.  I used the still uncalibrated reflow hot plate to solder the one chip and one zero ohm jumper on the board, using the wait-’til-it’s-shiny-and-then-take-it-off technique.  The solder paste was again a nuisance to try to apply smoothly.  Here’s the parts squished into the paste, and how it looked after reflow:

While it looks like the leads on the right side aren’t soldered at all, there really was solder up behind the leads. Either the solder paste or the chip was just not well located.  There was a similar problem with the first test – I’ll have to watch that.  Just to make sure, I hit both sides with solder wick.  Interestingly, the wick soaked up some extra solder from the left side and deposited some on the right side.  So you can probably solder an SMT part by just fluxing its leads and heating up some solder-laden wick on the leads and pads.

I dropped the MAX6675 lib in the libraries directory of my Arduino 0023 installation (I’m still not comfortable with 1.0), connected the thermocouple, plugged the board onto the ICSP header and brought up the example that came with the lib.  Since it doesn’t use the usual SPI facilities, you have to tell it which pins you have chip select, clock, and data connected to.  I fired it up, and it worked – reporting the temp each second!  The only bad news is that I misspelled the name of the chip on the board.  Boo.

The reported temp went up when I held the junction in my fingers, and down when I wet it with alcohol and blew on it.  Since the chip has an onboard temperature sensor to correct for the unintended but unavoidable reference junction (making the assumption that it’s at the same temp as the chip) I put my finger on the chip and could see the reported temperature change.  As simple calibration checks, I got out the yellow multimeter with a TC probe, put some crushed ice and water in a glass, swirled it around a bunch and put both probes in.  Both registered about the same – 35 or 36F.  (WTH!!??)  I tried it with a cup of recently boiling water and they were farther apart – maybe 190 v 201F.  As a double check, I dug out an old commercial TC themometer I’d forgotten about ’til now and put all 3 probes into the same hot water.  The commercial one said 174, the multimeter 172, and my board said 178.  Probably close enough for government work.

Now for what this was all leading up to:  characterizing the hot plate.  I hacked the example a little to put out comma separated values of time (in sec) and temp, so it would be easy to import.  OK – the TC is in the well I drilled into the aluminum plate, the plate’s on the burner, and I’ve restarted the serial port capture so time 0 is when it starts.  Power on.

First scary observation:  The temp readings are VERY noisy – bouncing by 30 degrees over the course of a few seconds!  When it hit ~212F I flicked a few drops of water on the plate.  They skittered around as little balls riding on a layer of steam, indicating the temp at the surface of the plate was considerably above 212F.

I think target peak temp is ~220C, or 428F.  As soon as it hit 428F (using the peaks) I shut power off.

Second scary observation:  When I turned power off the reported temp jumped (in one reading) from 377F to 845F!  It kept climbing for almost a minute, peaking around 872F.  Was that real?  I put the small junction of the commercial meter into a few of the holes in the plate.  I didn’t see 870, but did see maybe 840.  Yes, it really was that hot.  For reference, the thermostat control clicked off after rotating only a very small amount as I turned it off.  (It had been turned up all the way.)  The good news is that the wild swings in the reported temperature (which peaked at a delta of 70F) were gone.

When the reported temp dropped to around 210F I again tossed a few drops of water on the plate.  This time they evaporated in a few seconds (but didn’t boil).  Here’s what it looked like:

OK, after I turned the power off, behavior was just about as expected (though a lot hotter!), including initial coast up to temp peak and a nice exponential cool down.  But what the heck is going on with readings while power is on?

The probe junction – which is connected directly to the chip, which is connected directly to the Arduino and through the USB connection to the computer – is certainly in electrical contact with the plate.  Is there AC leakage through the burner coil?  I’d expect the coil to be insulated (and the plug is 2 prongs, typical in double insulated tools), but maybe there’s leakage or capacitive coupling or something. Maybe I should ground the plate.  Or at least look at the voltage between the plate and PC ground at the Arduino.

I guess the next run should be with a laptop running on battery and completely isolated from the AC line.  Or run the Arduino from a battery and record the data.  The 1 K of EEPROM would give us 1000 sec – enough to cover the time of interest.  But it’s pretty essential that this gets resolved!

Trying the laptop is easier than writing to EEPROM, so I did that.  (After upgrading from 0015 to 0023, copying the sketch and library over and finding the right USB serial port,) I fired it up, turning the power off when it hit ~428F.  First, the thermostat control clicked off at a much more reasonable place somewhere between Low and Med as I turned it off.  Second, the wild fluctuations in reported temp weren’t there.  Third, the indicated temperature didn’t do wild stuff when I turned the power off.  Quite promising.

On the way down, I put a few drops of water on the plate when it read ~320F.  The water boiled off immediately, dancing around a little.  When I did it again at ~220F, the drops stayed put, but bubbles were visible inside as they evaporated.  At 200F, no bubbles.  Those sound about right.

That’s much better.  So the thermocouple interface board works, though I have to watch out for some sort of common ground problems.  I guess I can live with that.

Posted in Reflow soldering | 3 Comments

Making more cupric chloride etchant

The CuCl2 etchant is working great, but I lose a very small bit with liquid that clings to the board and holder each time I take one out.  Between that, wanting a little deeper bath in case I need a longer board, and wanting it to not get tired so soon if I need to do a couple of boards in a row, it’s time to increase the volume of etchant in the tank.

From the tank geometry it looks like an extra 220 ml would get to about the depth I’d like.  I should be able to dump some HCl and copper into the bath, turn on the bubbles and come back and check on it in a day or two.  But how much HCl and how much copper?  OK, the net reaction must be
Cu + 2HCl -> CuCl2 + 2H   (I don’t think H2 is released – where does the H go?)

One mole of Cu (63.5g) reacts with 2 moles of Hcl (2 x 36.5g).  From the Seychell paper, I’m looking for a concentration of ~150g/l Cu+2.  To make 0.22l, I need about 150 x 0.22=33g Cu.  That (33/63.5=)0.52 moles of Cu will consume 1.04 moles of Hcl, or (1.04 x 36.5=)38g of HCl.  Since my acid is about 10M (based on the 31.5% concentration marked on the bottle and a chart on Seychell), that 38g would be provided in (38g/(365g/l)=)104 ml of concentrated acid.  But I want 220 ml of solution.  Again according to Seychell, I’d like the bath to be ~3M HCl.  Out of the remaining 116 ml I need to come up with enough HCl to make that 220 ml come out around 3M.  So I need an additional (3 x 36.5 x 0.22 =)24 g HCl.  The 10M acid gives me 365 g/l, so I need an extra 24g/(365g/l)=66 ml of concentrated acid.  With the 104 ml needed to react with the Cu, that’s 170 ml total acid.  Adding 50 ml H2O will give me my 220 ml total.  Whew.

#12 copper wire is just about 9 g/foot, and stranded wire provides more surface area than solid, so I need 33/9=3.7 feet of stranded #12.  I clamped a bit of broken razor blade between some angled wood blocks to make a longitudinal insulation slicer, dragged my 3.7′ of #12 THHN thru, peeled off the insulation, and the raw Cu is ready to go.

To support the wire in the bubble stream, I made a little hammock of soft plastic counted cross stitch “canvas”.  It’s supported by a bit of the nice plastic Flavia coffee packets are shipped in.  I hope the plastic canvas doesn’t dissolve in (and pollute!) the etchant.  Guess I should try a little bit first.  The plastic cable tie I used to tie the air hose to the air stone support was gone in the first few days, so not all plastic fares as well as the Flavia stuff.

Hmm – when I suspended a little of the pink plastic in the bath and turned on the air pump, I hardly got any bubbles at all.  I pulled the air stone out and tilted it and played with it a little and now it seems to be bubbling OK.  That’s not reassuring.

The bit of pink plastic didn’t change much in 15 minutes, so I put the 170 ml of acid and 50 ml water in, submerged the pink copper holder and turned on the bubbles at about 5 PM 1/26.  We’ll see what happens.

Update 1/28/12:  The bath had turned very dark brown (very reasonably from all the new Cu+1) by the time I first checked on it 2 hours after it started, and has stayed that way ever since.  The color indicates > 10g/l Cu+1, so etching action is substantially slowed/stopped.  I expect it’s in a sort of dynamic equilibrium with the air coming in regenerating the etchant (oxidizing the Cu+1 to Cu+2) and determining the rate of dissolving further copper.  Each time I lift the copper carrier out (once or twice a day) the wire is a little scrawnier.  I expect that will continue ’til it’s all gone – and then the solution will slowly (dependent on the bubble rate) turn back to its normal green to say that it’s done.  The pump and air stone seem to be providing a very nice bubble stream – reassuring after the minimal bubble thing at the beginning.  I guess it’s doing exactly what it should.

Update 1/29/12:  After about 2.4 days the Cu is almost all gone.  Color test is as brown as ever, which is what I’d expect.  Should be ready to go in another day! … After 2.75 days, just a little sliver of Cu left; maybe slightly less brown.

After 3.13 days, all Cu is gone.  Here’s the pink plastic carrier before and after rinsing it off.  It fared very well.  It’s all green-up from here.

Update 1/31/12:  Finally after 4.7 days the drop test is showing Cu+1 is down to ~4 g/l.  I hadn’t quite lost faith, but it’s taking longer than I expected.  I suppose with the same bubble rate and more solution it’s reasonable that the rate of regeneration in terms of change of concentration/hour would be a little lower.  I wonder if there are larger aquarium pumps?  <checks model #, google, google…>  Sure enough.  The cheapie I got for maybe $6 is an Aqua Culture MK1501, for 5-15 gal tanks.  It functions – both for circulation during etching and aeration during regeneration – but a bigger pump would probably be better for both.  And would be much better for mass copper dissolving.  Now that I know the system works, I guess I should invest in a bigger one.

On reflection on the minimal bubbles at startup issue:  The air stone has a small horizontal passage along its length and stone above.  If it’s been sitting for a while, I’d expect the channel to fill completely with liquid (as well as filling the air tube up to liquid level), since the check valve in the pump can’t be perfect.  What I observed was lots of bubbles very near where the air tube is glued into the stone and nothing along the rest of the length of the stone.  One of the things I did was tilt the whole thing while it was out of the liquid (air hose end higher).  Eventually bubbles seemed to be coming from the whole length of it, and I put it back.  Thinking about the startup conditions, it doesn’t feel like there would be much trying to flush that air channel if the bubbles could just crowd out near the air hose.  So maybe to get uniform bubbles after it’s been off for a while I’ll always need to lift it out, tilt it to drain the air channel (better with air flowing) and put it back.  A small hassle, but worth it if it provides more uniform bubbling.  I’ll have to try that.

During this major regeneration, the bath and tank are really ugly/dirty.  The solution is quite dark when it’s fully regenerated, but at least it’s a pretty green.  This is just ugly.

 

Update 2/2/12:  After 6.7 days, the solution is down to ~1g/l Cu+1.  Yeah I did one board in there, but it was tiny, and I can’t believe it affected the overall regeneration time measurably.  This is way longer than I expected.  I guess a larger pump would be appropriate.

Update 2/3/12:  After less than 8 days, solution is (finally!) perfect light green.  I cleaned up the etch tank, and made splash guard.  The bubbles routinely propel tiny droplets of liquid a couple of inches above the surface.  This guard tries to contain that splash and let it drain back into the tank.  This one is only good for regeneration, since it doesn’t have room for a board holder.  I may just fit and glue a separate splash guard to each board holder.  I have lots of clamshell packaging material 🙂

I used to put a baggie over the top to contain the splash.  (It didn’t go as deep into the tank as this picture seems to show.)  I’ll continue to do that, though now I expect the baggie to get considerably less wet.

Since the zip tie I used to hold the air hose to the air stone hold-down failed within a day or two, I tried using monofilament to tie it down this time.  This pic was before I realized I tied it down wrong:  I’d like the hose to come up a corner, but this leads it up the wrong way.  The redone monofilament ties it to the other edge.  I’ll report back later how the monofilament survives.

When I pulled the air stone out to tie down the air hose, I noticed that the epoxy sealing the air hose into the stone and sealing up the end of the cut stone had turned quite dark.  This was of course after living in the very dark solution after adding lots of copper.  It does still seam to seal OK, though.

 

Posted in Cupric Chloride Etchant | Leave a comment

First hot plate reflow attempts

Dan, Jim (from FSI) and I did a first round of surface mount reflow soldering tests on my new hot plate at the space Tuesday evening.  Results were excellent – even better than I’d expected.

I chose a hot plate over an electric skillet because it felt like the sides of the skillet would get in the way and provide extra opportunities for me to burn myself.  The hot plate I got was $12.50 with free Super Saver shipping from Amazon.  Based on reviews there, it came much more highly recommended than some similar hot plates.  The 1100W single coil type burner has a common rotary mechanical thermostat for temperature control.  It was used for little more than on/off in these initial tests, though it will probably be useful as the technique is refined.  The burner provided more than enough heat for reflowing.

To spread the heat more uniformly, I put a piece of scrap 1/4″ aluminum plate on top of the burner.  Here’s one of the test PCBs on the aluminum on the burner.

Temperature monitoring was by way of two devices, both yellow.  I succeeded in finding the never-used thermocouple probe that came with a multimeter I’d bought several years ago.  I also took the hotplate project as an excuse to get a cheap IR thermometer (with laser sighting – oooh!).  That one was $17.20 from Amazon, and was also used to put the order over the $25 minimum for Super Saver free shipping.  A great deal!  The IR thermometer is very useful for this application, if a little awkward because it’s hand held.  The plan is to drill a 1/8″ hole as deep as I can sideways straight into one edge of the aluminum plate as a well for a thermocouple.  I’ll use the one shown here for now, but might use another connected to a temperature display and controller some day.  Or not.

There was serious question around what to do for solder.  I had a 0.5cc syringe of solder paste that’s been sitting in the fridge since 12/07.  Shelf life is supposed to be 6 months or a year, but what the heck – it was worth a try.  While it would be possible to make a mask and squeegee the paste on, the thought of all the additional steps to do that put that approach very low on the list.  I’d seen demos of just squeezing a continuous bead of paste out across the pads for each side of an IC, and that seemed easy enough to give it a try.

My main hope was to generously tin the component pads by hand with conventional solder and remelt that with the component sitting on top of it at reflow time, avoiding all dependence on solder paste, its shelf life limitations, and application problems.

I happened to have a board with two identical layouts (latches for the Scrolling LED Display project), providing an ideal way to compare the two solder approaches, so that was the first board we did.  Here’s one side with inexpertly applied solder paste and one with hand tinning.  I was surprised that my hand tinning was as non-uniform as it was.  (The tinning on the W88 logo was part of another test.)

I smeared a little paste flux (not to be confused with solder paste, which contains flux) on all the pins of the 2 latch chips and set them in place.  The flux both provided the usual chemical cleaning and helped keep the chips in place.  The latter was especially needed for the chip sitting on the lumpy tinned pads; it was probably not needed at all with the solder paste.  I did remain sufficiently in possession of my wits that I got the Pin 1s in the right places.  Here’s a pic of the fluxed chip squished down onto the solder paste.  We put the board on the aluminum, fired up the burner, and started to watch the temperature.

It heated up pretty quickly, with the whole reflow cycle taking maybe 2 or 3 minutes.  The first thing we observed was a little smoking, presumably from the flux.  Then all of a sudden we noticed the solder was shiny – it worked!  While I shut the power off right after the solder melted, the board started to discolor, and at Dan’s strong and very appropriate urging, we slid the board off the aluminum (and on to a convenient piece of green scrubby we’d used to clean the boards).  I suspect the temperature of the aluminum was still going up at that point.  I guess I should do some more formal testing to understand the characteristics of the plate’s temperature as a function of time and power to the burner.

(Hmm – I have a MAX6675 thermocouple interface IC that talks SPI/I2C (and some shiny new thermocouple wire).  If I just made up a quickie breakout for it I could hook it up to an Arduino and make a recording thermometer, making the testing above much easier – especially after the first or second trial.  I wonder where that should fall in the project priority list?)

Here are the two chips after reflow.  I figured the thick bits of tinning would flow around the pins, but that obviously didn’t happen much.  I suspect all the pins are electrically connected to the pads, but I’ll add a little solder by hand before I put them into the LED display.  The paste solder side (left) looks great!  No bridges, almost everybody looks nicely wetted.  I’m starting to be a believer in solder paste.

The second board we did was considerably more complex.  Unfortunately I didn’t have quite all the parts, so I’ll have to finish up my hand, but we got most of the board done.  Fortunately, we had a completed, functional version of the board we were working on as a model.  Jim and Dan sorted thru the little bags of 1206 resistors to pull the ones we needed.  (Something like 50 each of 20 different values for $13 or something from Ebay – a great investment!)  The syringe of solder paste came with 2 nozzles, and I used the smaller one on the first board.  That seemed a little skimpy, so I used the larger one on the second board.  Dan blew the paste out of the first nozzle with compressed air.  (Many thanks for bringing that compressor and hose in, Dan!)

We took some videos of me applying the solder paste to the second board.  My technique improved considerably by the end of the work.  I’ll clean up the clips and post links here Real Soon Now.

The finished board is discolored – presumably from not taking it off the burner as soon as we should have.  But the soldering quality is excellent.  Those resistors are considerably better than I can do by hand.  The processor chip looks very good, too.  One solder bridge, but that’s trivial to fix with some solder wick.

OK – now I’m convinced.  Reflow with solder paste produces better results than I can do by hand – and probably takes less time, especially for more complex boards.  This started out as an experiment to see if/how it would work, and gain a little insight in case I might ever actually need to use the technique at some unspecified time in the future.  But now I think this will become my primary technique for SMT soldering for all but the simplest boards.  Wow.

There are still questions about solder paste.  What I have doesn’t stick very well during application.  Maybe after 5 years it’s a little dried out.  (I suspect the short shelf life quoted is based on industrial use with paste stencils.  Viscosity and flow have to be tightly controlled for machines to apply the paste consistently.  For hobbyist use where I’m watching each bead I lay, I can probably get away with stuff that would choke a machine.)  Fortunately there are folks that sell small syringes of it on Ebay, so I’ll probably get some fresh stuff now.

I have a new way to solder!

Posted in Reflow soldering, Workshop 88 Stuff | 5 Comments

Personal journal

I’d like a journal-type tool to keep track of life stuff.  I kept a daily journal at work for the last several years, expanding it toward the end to include a closing one-liner each day just for me with a productivity grade (did I earn my pay today?), exercise, and caffeine intake.  While its very direct benefits in filling out weekly time sheets and annual preparation for appraisals no longer apply, (yay!) I think such a log may help:
– As a way to look back to see patterns in health and exercise over time.
– As a motivational tool (Rats – 3 days in a row with ‘D’ for productivity – I better get my butt in gear.  Wow – 4 days in a row with ‘A’ or ‘B’ productivity!  Let’s see if I can make it a whole week!)
– As something to search back through to see when (if?) I did something.

Platform, design, requirements

This is a green field development – I can design it however I want.  Some requirements:

  • accessible from anywhere – any computer, phone, tablet
  • orthogonal with my project notes – about me: health, priorities, struggles
  • very likely to record grades, exercise durations/types, etc in several dimensions without becoming burdensome
  • ideally the above grades etc would be parsable if needed
  • no more complicated than necessary (as simple as possible but not simpler)
  • preferably free, but that’s not a hard requirement

Some general thoughts:

  • actively want to log exercise, especially in light of new jog/walk program
  • might provide some of same pleasure as writing in my project notes
  • by keeping grades, might be able to motivate myself, improve, and see improvement
  • include a weekly recap?
  • integrate with to do lists to keep me on track?
  • include thoughts/ramblings (like “how do I best ___?”) maybe in a single place rather than spread across daily entries?  maybe a way to make resolved items disappear (but not be deleted)?
  • Maybe I really need 3 documents:  Daily journal; table of grades, activities; single thoughts/plans/improvements/whatever page organized into topics?
  • What about integration with To Do lists and maybe even calendars?

After some web research, no tools jumped out as ideal.  I’m not very good with decisions, but really wanted to get underway.  Google docs didn’t raise any red flags, so I’ve started out with that as the platform.  If it doesn’t work out, there’s always version 2 🙂

For grades, activity durations etc a spreadsheet with a line per day and a pre-filled-in date seems like the least bother.  I suppose I could have a couple of free text fields for daily ramblings.

For the general ramblings, I picture something like my old work journal.  That started each day with a boldly formatted date, inserted with a single click via a Word macro.  There are no such tools in Google docs – bummer.  I don’t know what I’ll write here.  If it’s not much, the free text fields in the spreadsheet might be sufficient.

For higher-level organization/prioritization neither the cron log nor line-per-day spreadsheet formats seems appropriate.  The “What Matters Most” ideas from a Franklin Covey seminar I took years ago still resonate, and I guess I’m looking for a central place for ideas like those, including areas I need to work on improving.  Probably things like “spend more time cleaning the house” rather than “improve SMT soldering skills”.

While I bridle at the thought of multiple docs, the ramblings, hard data records, and WMM really are pretty disparate things.  And the WMM is mostly for occasional review, so there would really only be 2 docs to touch daily.

To Do lists

I’ve believed for a long time that the way to get things done is to take your sensibly, realistically prioritized to do items, put them in specific time slots on your calendar, and then live by that calendar.  It doesn’t really feel like somebody telling you what you should be doing each hour, since you put the items on the calendar and you made the priority calls about which ones to do first.  But believe as I may, I’ve never been able to force myself to implement it on a regular basis for any length of time (despite several tries).  Just a personal flaw.

I’m probably now willing to cut myself the slack of no longer feeling guilty about not using that patently superior technique.  But I’m still keenly interested in knocking stuff off the to do list(s).  And of course there’s the question of how to physically manage the list(s).

For home to dos I’ve kept a paper list in a very prominent central location (the kitchen table, despite significant mess-related drawbacks to that location) for years.  It’s two columns hand written on 8.5 x 11 paper, with new entries at the end of the list, and items varying from Exercise! to Get trash bags to Finish board layout for recording preamp.  Items are well crossed off when done, providing satisfaction while making the list easier to scan.  One or more large stars mark urgent items.  When the paper is about full, I start a new one, with the still-undone items copied.  There’s some value to actually writing those items down (again) by hand.

The downside is that I have to be at the table to add to the list.  The real blessing is that once I’ve managed to scribble something down I can stop worrying that I’ll forget about it.  (That’s GTD’s using a trusted system to remember things for you.)  Of course the latter benefit doesn’t have anything to do with it being a paper system.

What really bothers me about the paper list is that I can’t explain why it works and I stay with it while online lists haven’t worked out.  I’m perfectly willing to go with a low tech paper system – but it’s really troubling when I can give apparently valid, rational reasons why on an online system would be much better.

I tried to use the task list feature in Outlook when that was the required company email client at work, but it just never gained traction.  I’ve also got a pretty complete list in the online Toodledo system that syncs with a GotToDo app on my phone.  That has it all – browser access on the PC, access from my phone, and it’s free.  But that one has languished as well.

So the mystery of why the paper list works remains.  Maybe sitting down and doing a formal pros/cons analysis or talking it out with a sounding board (Lauren would be fine) would provide insight.  I’ll do that soon – there’s an item for it on the list on the kitchen table.

Update:  While this post was still being completed, I really wanted to get under way, so I started a spreadsheet in Google docs.  It’s been going for a week now, and is up to 15 columns.  Surprisingly, it’s not very burdensome.  Seeing what I have and haven’t done in black and white is a pretty good motivator.  I really hate to see those entries in the aerobic exercise column that say “none”.  And I’ve put in some checkmark nag columns (like ‘spend 15 minutes each day doing some kind of shop/bench/basement cleanup’ and ‘review to do list and plan for tomorrow’) that are helping build some desired habits.  There’s one column for what I’ve done today – the new implementation of my old cron log – that seems to be sufficient to avoid needing a separate doc.  Good.

There’s a separate document that will be home to What Matters Most stuff – perhaps even modeled after their suggestions – though I haven’t started that in earnest yet.  Hmm – better go write that down on the kitchen table.  (Done.  That was easy – one of many benefits of being home all day 🙂

I’ll update this in a month or so with whatever comes of it all.  Hmm – guess I should put something on my calendar to remind me to do that.  I really need a good mechanism for ‘ticklers’ like that.

Update 4/29/12:  I made a Google Docs spreadsheet for a Daily Log.  Did split screen view so column headings are always visible.  Made a sticky note on each heading with clarifications about how to use it.  I’ve been pretty good about keeping it up, and it provides a little reminder/motivator for stuff like exercise:  I hate to have to fill in that I skipped today.  Current headings:

  • date, day of week
  • sleep: A=all I wanted, B=pretty good, D=not enough
  • productivity: A, B, C…
  • aerobic/cardio exercise – like running, cutting grass, dancing
  • did I do my daily stretch routine?
  • strength training – like pushups
  • free text field for what I did today, comments
  • health – how I feel, any special problems
  • caffeine – how much
  • itchiness – 0 to 4 for chronic itchy rash – looking for patterns
  • shower today?
  • shave today?
  • plan – did I look at to do lists and try to do important stuff?
  • 15 minutes of cleanup – trying to institute a new habit (not very successful yet)
  • time mgmt – especially leaving late for stuff

I’ve been quite good about keeping it up.  Aside from weekends away, I’ve only missed maybe 2 days since I started it.  It’s effective and I’m pleased with it.  It also provides a way (by adding new columns) to track/encourage new habits I may try to build.

On to-do lists:  Still trying to move away from paper lists.  I’ve shifted how I use them:  One use is an extremely quick way to capture something I want to do – sort of an inbox holding list.  Stuff there should be added to Toodledo at earliest convenience.

Second use for paper is a to-do-today list.  Gives me a single place to look for tasks both urgent and important whose time has come.  It’s a short list, remade almost daily, and crossed off stuff provides both satisfaction and visual clues about how I’m doing.  I’m considering something like identifying which/how many things I have to get off the list to get an A (or a B) in productivity for the day.

Another experimental paper list use is for quickies.  These are things like ‘take checks to bank’ or ‘oil hatchback hinges on prius’ that are both quick and atomic.  They’re almost too simple to bother making a Toodledo task, and the list is usually short enough that it doesn’t get out of hand on paper.  That list gets scanned daily to make the daily list.

I’m still not nearly happy with the systems, but they’re a start, provide some degree of daily guidance, and are helping me learn more about myself and what works and what doesn’t.  And of course there’s the interesting puzzle of what things a better task organization system would help, what what part it’s just my laziness.  All work in progress.

Posted in Life hacking | Leave a comment

PCB etch fail

Wow – I just had an etch fail dramatically.  I don’t think this has ever happened before – certainly not since my process stabilized with presensitized board (long before I started with cupric chloride).  I suspect it was just left in the etchant too long, but can’t say that for sure.

I was doing several things at the same time, and was using a timer for the etching (as well as UV exposures).  As is my custom, I set a timer for 10 minutes with the expectation of flipping the board vertically to correct for routinely uneven etching (less at the top).  When I checked on the board after 10 minutes, nothing was etched thru (no bare board), so I reset the timer (and probably didn’t flip the board).  I don’t know what I reset it for -possibly another 10 minutes.  There might have been another reset – maybe for another 5 minutes?  I vaguely remember checking it at one point and noticing a very large area (~1/2 of the board) not etched – presumably copper colored.  That particular board (the recording preamp for the latest small box) has a large area of copper by design.  Of course, it should have been covered by resist, so presumably the resist was gone by that time.

A couple of things were slightly different about that board.  I had exposed and developed the board the night before I etched it.  I almost always do that immediately before etching.  Might dried resist be more fragile?  Another thing different from usual is that since I was doing several boards, I used a little more developer than usual, but kept it and reused it for multiple boards.  The later boards didn’t develop nearly as quickly as usual.  I eventually dumped the old (blue) developer and poured some fresh.  Might sitting in the stale/used developer have softened the remaining resist so it didn’t stand up to the etch bath?

Later today I made a new copy of that board – and used old developer.  When it didn’t develop right, I got spooked, dumped out the old stuff and poured some fresh.  It developed OK – and then etched just fine.

I also etched another board I’d exposed and developed the day before, and that one came out fine, too.  The etchant is dirty (5+ g/l Cu+1) today, but I’ve etched a couple of other boards today, and while etch time is up from ~20 min to ~30 min, I’ve seen no other evidence of resist failing.  So about all I can guess is that I kept putting the board back in the etch and lost track of how long it was.  Bummer not having closure on this.

Posted in Cupric Chloride Etchant | Leave a comment

3.3 V adapter – oops

With more and more stuff running on 3 V, I decided to make a quickie adapter for the very nice SparkFun 5V-from-an-AA supply that lives on my bench.  Then I’d have which ever voltage I needed right at hand.

Just a 3.3V reg with 0.1″ male and female connections – simple as could be.  Until I tested it and found I’d wired the input of the regulator to the female side.

At least I found it before I potted the wiring on the bottom in epoxy…

A little later:  The regulator is replaced and it all works fine.  There will be no need to discuss what the alcohol I used to clean the flux from the repeated solderings on the bottom did to the pretty labelling, or the jelly-side-down incident with the potting epoxy.

Posted in Miscellaneous | Leave a comment