Matho's controller

Australia & New Zealand Homebrewing Forum

Help Support Australia & New Zealand Homebrewing Forum:

This site may earn a commission from merchant affiliate links, including eBay, Amazon, and others.
East Maitland NSW

What's giving me to poo's more is I can program cnc, lasers, mills, routers and draw in most CAD program's but I can't get a small circuit board to work.
 
Cavemanbrew, is it detecting the uno in devide manager? Can you hear the usb connect sound when you plug it in? I assume the board is powering up when plugged in?

In the arduino software, you have the right com port selected? Also the right board selected.. Uno, mega.. etc.
 
Neo__04 said:
Cavemanbrew, is it detecting the uno in devide manager? Can you hear the usb connect sound when you plug it in? I assume the board is powering up when plugged in?

In the arduino software, you have the right com port selected? Also the right board selected.. Uno, mega.. etc.
Thanks for replying

No there is no new device sound, or any sound when plugged in. No lights come on when plugged in, I checked the lead back on my printer and ok.

In the arduino software, you have the right com port selected? Also the right board selected.. Uno, mega.. etc, not sure and yes the ion is selected.

May be my uno board is foo bared ?
 
Even if the drivers were stuffed, it should still get power from the usb port i would think
 
Done a bit of research tonight for anyone building mathos kit. Im going to be running a 3600w element and want to make sure everything is safe.
I'll be using IEC (pc power supply) connections. The ones in the kit are rated at 10a. I found some 16amp & 20amp connectors at RS components for only a few dollars.

Might be helpful for someone.

http://au.rs-online.com/web/p/products/7769129/
http://au.rs-online.com/web/p/products/7769135/

http://au.rs-online.com/web/p/products/7769144/
http://au.rs-online.com/web/p/products/7769125/
 
I've got my controller all together and the heater works fine but when I try to turn the pump on in manual mode it turns on for a split second then off. The arduino displays the P icon but no power is being sent to the socket. If I apply 12v directly to the plug it works.

The pump works in auto mode. Any thoughts?
 
redwood turn pump during boil ON

I'm not sure if this is a bug or not, hopefully the pump will stop at the pump stop temperature in auto mode?
 
Hi Max, yes I have configured the system and set the pump stop temp to 105 and it's cutting out right away even with the temp at 27 degrees
 
Nice one Max. I just tested it and when you turn it to on during boil to overcome the problem in manual mode the pump does switch off at the set temp (80c for me) while ramping up to boil.
 
Error found, it is change a number in a point of the sketch.
If anyone can prove, please contact me in PM I tell him where to be changed so that it can be tested immediately
 
I've changed my mind... If you want to try

You have to change a number at the end of void MANUAL_MODE:
...
if (mheat)PID_HEAT(true); //set heat in auto mode

if(mpump)pump_rest(8); //Forced Boil Stage for Pump Control

}CntDwn(TimeSpent);
}lcd.clear();
}

void WaitStart(){
...

The number 8 should be changed to 7
 
Back
Top