-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reflowOvenPID.Compute(); issue #12
Comments
Did you add anything onto the code? It looks like not enough RAM? I have been producing boards few days ago and never run into something like this. |
Thanks for the reply, no i did not add anything to the code, very strange, i ve tried to make a new clean installation of arduino ide and libraries but nothing change. 2 photo of my pcb : Any idea? i really love this project, i hope to find a solution |
The MCU is correct part number. The compute part shouldn't be blocking. I'm not sure what causes this because this is the first time I heard something like this on this design. |
Hi, i'm trying to running this code from Rocketscream tiny reflow V2, but when the Compute() call is in the loop, simply the board do not boot up, the oled stay black and nothing works, if i temporarly remove the compute() using // the board is booting and oled works. ANy idea?
p.s. i use the original board from rocketscream, the 328p have promini3v3 8mhz bootloader on it.
// PID computation and SSR control
if (reflowStatus == REFLOW_STATUS_ON)
{
now = millis();
}
// Reflow oven process is off, ensure oven is off
else
{
digitalWrite(ssrPin, LOW);
}
The text was updated successfully, but these errors were encountered: