How to build a 21st century protection board

New boards arrived. I haven't worked up enough energy to hand etch any mosfet relay boards to test yet. I think I'll just add some extra board to the top and get some done. I can shear them down later if space is an issue.
 

Attachments

  • 2014-12-29 14.29.38.jpg
    2014-12-29 14.29.38.jpg
    739.5 KB · Views: 363
My control board.

I've done 1 change - used the "heating" output ... replace or combine
digitalWrite(HeatingOn, HIGH); with digitalWrite(SpeakersOn, HIGH);

Get rid of "SpeakersOn" and just the heating output switches high at the end of
the "main loop".
You could cleanup and rename/eliminate all the "tube stuff" (if you are not using them).
your "heatingON" could switch bigger relays or SS relays.

change 2 - use pin 15 / (D12) for a full dual color fault led setup (common anode
red/green). Just assign "powerLED2" to pin 15 , replace any fault indication with
led2 - red !!! I would also need to add a resistor/diode in series with the new red.

Easier to know whether you "screwed up" with colors. :D

OS
 
I've done 1 change - used the "heating" output ... replace or combine
digitalWrite(HeatingOn, HIGH); with digitalWrite(SpeakersOn, HIGH);

Get rid of "SpeakersOn" and just the heating output switches high at the end of
the "main loop".
You could cleanup and rename/eliminate all the "tube stuff" (if you are not using them).
your "heatingON" could switch bigger relays or SS relays.

change 2 - use pin 15 / (D12) for a full dual color fault led setup (common anode
red/green). Just assign "powerLED2" to pin 15 , replace any fault indication with
led2 - red !!! I would also need to add a resistor/diode in series with the new red.

Easier to know whether you "screwed up" with colors. :D

OS

Cool stuff. The "platform" gives a lot of freedom. No limits for ideas ;)
 
Cool stuff. The "platform" gives a lot of freedom. No limits for ideas ;)

Actually , If Jwilhelm can replace those relays with FETS , I could do a lot less
modifications and just use the "heatingon" for my dual color setup.

Since my "big baby" amp is wired around this control board , less is best. :cool:

The scheme of the "main loop" is now quite apparent. Almost at the point of
writing new stuff. Your commented script was quite helpful.

OS
 
Actually , If Jwilhelm can replace those relays with FETS , I could do a lot less
modifications and just use the "heatingon" for my dual color setup.

Since my "big baby" amp is wired around this control board , less is best. :cool:

The scheme of the "main loop" is now quite apparent. Almost at the point of
writing new stuff. Your commented script was quite helpful.

OS
Speaking of "less is best", a single LED can be flashed in different patterns to indicate the fault type. Add PWM to the LED and the fault may even seem attractive ;)
 
My new condensed version with a mosfet relay.

Nice. Real nice.

I anticipated you changing the board layout considerably and rewired my big
amp with lot's of extra wire length for the controller. I have a 1A 15V trafo , too.

Glad to see you kept the tube heater output , that is my fault led output now
(bright red flash)... see everything from across the room.

I'm going to explore the analog/reference part of the chip(atmega) next , this could
really be interesting.
OS
 
Nice. Real nice.

I anticipated you changing the board layout considerably and rewired my big
amp with lot's of extra wire length for the controller. I have a 1A 15V trafo , too.

Glad to see you kept the tube heater output , that is my fault led output now
(bright red flash)... see everything from across the room.

I'm going to explore the analog/reference part of the chip(atmega) next , this could
really be interesting.
OS

I added a couple extra outputs for future use as well. I didn't connect any of the analogue inputs though.