The Flow
The Flow
The Flow
1. Set timer
2. Set temperature
3. Send to Arduino the timer and the temperature set.
4. Ang mag on lang sa hardware kay ang filaments, temperature sensor
and fan.
5. Display the Temperature being set (not the real-time but the desired)
void setup() {
Serial.begin(9600);
dht1.begin();
dht2.begin();
pinMode(FAN, OUTPUT);
pinMode(RVR, OUTPUT); //Set CW as an output//
pinMode(FWD, OUTPUT); //Set CCW as an output//
pinMode(MILLER, OUTPUT);
pinMode(FILAMENT1, OUTPUT);
}
void loop() {
Serial.print("Time: ");
Serial.println(minutes);
delay(1000);
if (minutes == 5)
{
}
}