Attiny25/45/85 FW Development Thread

Well, I do have some true PID code for my reflow oven. It runs on a MEGA2561 and uses floating point code. It is pretty much the same PID/fan control code I used my GPSDO (GPS Disciplined Oscillator) temperature stabilizer. I have seen it control temperature with a 24 hour RMS error of 1 microdegree, with peak errors of less than 5 millidegrees… Might be a bit much for a flashlight.

A simple temperature control PID is not much more complex than Dale’s code. Implementing the I (intergral) term can be a bit tricky… you have to handle “integral windup” where the integral (long term compensation) value keeps accumulating in the same direction and “runs away”

Tuning a PIDs control parameters is always a pain. Most simple method is to start with P/I/D values at 0. Increase the P value until the output starts oscillating and then increase the D value to stop the oscillation. Then adjust the I value to minimize long term drift. My oven / GPSDO code has some auto-tuning code to that does a lot of the work.

Hmm, 534 bytes. Not bad at all. Certainly better than the ~5k bytes one I looked at. :slight_smile:

I’ve got a copy of the Indigo 5.2 firmware, but it’s a little … opaque. Assembly code with sparse Russian comments. I think Atmel’s version will be a more useful reference, and another Kalman link I found which deals specifically with compensating for situations where one or more values lag behind.

It wouldn’t be a big deal to devote an extra ~500 bytes to PID on a tiny45/85. I wonder how much the response curve can be improved with PID and/or Kalman instead of the “steer really slowly” approach, and if it can anticipate over-heating conditions and start to correct for it in advance. I also wonder if it’ll need to use the full 10 bits of precision instead of 8, since temperature measurements are rather coarse so far.

Too many questions/unknowns. I need to just do it and find out. … … after I get more parts and some time.

Belive me, you don’t want to go down the Kalman rabbit hole. Insanity awaits those foolish enough to enter that dark realm. I’ve been there and barely escaped with my life. Bits of brain still ooze out of my nose whenever I think about it.

+++1 here! Sorry been behind here but Mike - you have some real original work goin on and always enjoy following you.

Been away climbing for a while, sorry for late replies.

It works very well, I’ve been using it in several lights. It’s all just voltage measuring, and deciding what to do with the measured values.

Individual pins with groups. AMC7135 groups are PWM, 1, 2 and 4. Another pin for the voltage input and the last pin I’ve put on either a FET or a larger group of AMC7135s. I’ve looked at using external components to avoid mucking around with the reset pin but on I’m all out of space for the solutions I could find. I’m not that knowledgeable with these things though, any good suggestions I could look at?

Thanks! In regards to board design I wouldn’t know why I’m not having the same issues. No funky stuff with the layout. And as far as I have been able to tell, these issues with the FET / moonlight you have been having have not been able to be resolved by firmware coding. What is the FET you are using? If it has the same footprint I could always build a test driver with one of them (if it’s not the one I use).

I’ve been work’n on a few older mods with the wight FET+1 driver v009 and a Attiny85 and noticed not all had issues. Couple didn’t need anything extra, while others needed the FET gate resistor and the 0.1 uF cap across the +/- input to the MCU. I use about always the SIR800DP FET, where it’s been reported by others to be prone to the flash problem. Read somewhere that someone simply replaced it with a different P/N FET and the flash went away - don’t recall where or which FET it was though.
I tried pretty much everything in firmware to fix it, TK has also, and we couldn’t fix it.

I do have interest in temperature control. Currently I have temperature calibration and step down, and have a few first tests of temperature controlling. What advantages would a PID controller have? My testing consists of running a “learning” routine where the light heats up, shuts off and does a few things, all timing how the heat behaves in response to turning off and so on, and then storing the values into the EEPROM. My main issue is that with some hosts the difference between doing this routine while holding the light as a lot different than doing it while it is laying on the table. Care to write a few lines on how a PID controller could be used to make all this a little easier?

Ahh, OK. That one was harder to get in Europe, I think that’s why I went with the NXP PSMN3R0-30YLD. I’ve not used another one. If I remember correctly the SIR800DP has a diffferent footprint so I wouldn’t be able to test without changing the board.

The advantages, in theory, are a faster response to excess heat without “bouncing” the output. Perhaps it could even detect when the temperature is rapidly approaching the ceiling and start the step-down in advance.

The method I’m using now doesn’t care if the light is being held or not, but it steers slowly enough that it could still overheat before the step-down is low enough to help. The calibration is only one value, the ceiling temperature, and it’s a little tricky due to the lag involved in getting heat from the emitter to the pill to the MCU. It tends to exceed the ceiling for a little while before settling on the maximum usable output for that temperature.

It’d be nice to “look ahead” a little and start the adjustment early, to compensate for lag, and also to allow it to steer faster if it can be done without bouncing.

For those of you intrepid souls that want to wander down the Kalman filter rabbit hole, this is a fairly gentle introduction:

http://academic.csuohio.edu/simond/courses/eec644/kalman.pdf

That’s what my timing is for. As I time how long it takes before the light starts to cool down after the LED is off I can use this time to start lowering output in advance, and also take into consideration the lag time the sensor would expect to see the results of lowering. I’m thinking I’d use the timing when on the table, in still air and in room temperature would be a bench mark as the slowest reaction time to lowering for each host. Reaction time would be faster if holding or mounted on a bike while riding fast. I’m still just testing, but it looks like have come further with it.

So you do your lowering only once the temp reaches the ceiling? Is your lowering visible, like a mode change, or do you slowly fade?

I wrote it in another thread so I might as well write it here too…

I’ve just made a version of my FET driver (Mod: My take on the convoy S series with side switch mod.) with the PowerPAK SO8 footprint and ordered from OSH Park. I can’t get the SIR800DP but I’ll get a couple of SIRA00DPs. I don’t know if they are good for this purpose, but I’ll stick ’em on and see what happens anyway.

FWIW, the SIR800DP has the same footprint, but no exposed tab on the back, so you need the LED- pad extended to solder to

Nope. I use a VIA for LED- located right beside the FET’s tab. Footprint is not the same as the FET I normally use (NXP PSMN3R0-30YLD with LFPAK56 footprint). It’s about the same size though.

Are you saying the LFPAK56 is different from the S08? I think most people here use them interchangeably. That’s why I didn’t think they were any different.

I think they are interchangeably, but they are not the same. The footprint I made for the PSMN3R0-30YLD works perfectly for that FET, but the measurements and space between the pins are not the same as the S08. I know as I’ve just made my own S08 footprint for the SIRA00DP using the datasheet measurements.

Well sounds like you’ve got a handle on it then :beer:

I’m going to have to take this back… I just put them over each other and they are basically the same. The SIRA00DP has a different looking tab, and the footprint for that could be made differently, but the pins align perfectly with the PSMN3R0-30YLD… So I actually didn’t have to make another footprint. Oh well, what’s done is done.

Yes, it doesn’t start lowering until it hits the user-configured ceiling.

The lowering goes along a 64-step scale which is approximately visually linear. So, it’s hard to see but not impossible… and the first step is the most visible because I didn’t ramp down the 7135 at the top of the scale… it goes from 100% 7135 + 99% FET to 0% 7135 + 100% FET. The FET by itself is brighter than FET+7135, so the final step gets a visible bump up when using a full high-amp cell. The other levels are hard to see even when staring at it.

I really should ramp down the 7135 in the top few levels instead of going directly from 255 to 0, but I haven’t done it yet.

There’s also a somewhat visible bump at the boundary where it goes from 7135-only to both channels, but it’s not usually very noticeable.

Cooling for linear mode FET drivers:
Is it practical to use metal core printed circuit boards for drivers, as everyone (but the very cheapest) does for the LED? Or is there nowhere to get them made in small numbers? If not that, how about copper braid stuck on the FET with thermal epoxy?
People are already leaving a lot of copper around the FET, but more on other parts of the board might help the heat transfer (as well as helping reduce high frequency spikes).
Someone here has taken measurements and says that potting helps a lot.
More radical approaches are fans and liquid cooling. I once saw a Cray II working. It was in a fish tank full of low viscosity freon. There were streaks of tiny bubbles rising from the components.