mirror of
https://github.com/arwidcool/Solder-Plate.git
synced 2024-12-18 17:25:52 +01:00
Merge branch 'master' into reflow-in-millis
This commit is contained in:
commit
1cb29ecc13
19
src/main.cpp
19
src/main.cpp
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#define MOSTFET_PIN 17
|
#define MOSTFET_PIN 17
|
||||||
|
|
||||||
double currentTemp = 0;
|
double currentTemp = 0;
|
||||||
@ -33,6 +34,12 @@ TFT_Display tftDisplay ;
|
|||||||
|
|
||||||
TemperatureController temperatureController;
|
TemperatureController temperatureController;
|
||||||
|
|
||||||
|
TFT_Display tftDisplay ;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void setup()
|
void setup()
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -89,12 +96,7 @@ void loop()
|
|||||||
// State changed from state to newState (user input or wifi input needs to be above here)
|
// State changed from state to newState (user input or wifi input needs to be above here)
|
||||||
if (newState == ReflowProcessState::PREHEAT) {
|
if (newState == ReflowProcessState::PREHEAT) {
|
||||||
|
|
||||||
|
|
||||||
// Initalize the TFT
|
|
||||||
tftDisplay.init(&chosenReflowProfile);
|
tftDisplay.init(&chosenReflowProfile);
|
||||||
|
|
||||||
|
|
||||||
//Start the reflow profile after tft to make sure the timer is accurate
|
|
||||||
chosenReflowProfile.start();
|
chosenReflowProfile.start();
|
||||||
// Start the PID
|
// Start the PID
|
||||||
pidController.start();
|
pidController.start();
|
||||||
@ -121,11 +123,4 @@ void loop()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (state == DONE)
|
|
||||||
{
|
|
||||||
// TODO: BUZZER
|
|
||||||
pidController.stop();
|
|
||||||
reflowProcessState.set(USER_INPUT);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -168,6 +168,8 @@ public:
|
|||||||
return curStep.calcTempAtPercentage(startTemp, percentage);
|
return curStep.calcTempAtPercentage(startTemp, percentage);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get the Target Temp At Process Percentage.
|
* @brief Get the Target Temp At Process Percentage.
|
||||||
* @param processPercentage a number between 0 and 1. 0 is the start of the process, 1 is the end of the process
|
* @param processPercentage a number between 0 and 1. 0 is the start of the process, 1 is the end of the process
|
||||||
|
Loading…
Reference in New Issue
Block a user