Viking Skull Lamp  V1.0.1
Loading...
Searching...
No Matches
fogMachine.hpp
Go to the documentation of this file.
1/*
2 * Created on May 28 2022
3 *
4 * Copyright (c) 2022 - Daniel Hajnal
5 * hajnal.daniel96@gmail.com
6 * This file is part of the Viking Skull Lamp project.
7 * Modified 2022.06.27
8*/
9
10/*
11MIT License
12Copyright (c) 2022 Daniel Hajnal
13Permission is hereby granted, free of charge, to any person obtaining a copy
14of this software and associated documentation files (the "Software"), to deal
15in the Software without restriction, including without limitation the rights
16to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17copies of the Software, and to permit persons to whom the Software is
18furnished to do so, subject to the following conditions:
19The above copyright notice and this permission notice shall be included in all
20copies or substantial portions of the Software.
21THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27SOFTWARE.
28*/
29
30
31#ifndef FOG_MACHINE_HPP__
32#define FOG_MACHINE_HPP__
33
34#include "Arduino.h"
35#include "menu.hpp"
36
38#define HUMIDIFIER_PIN 6
39
41#define HUMIDIFIER_DURATION (unsigned long)15000
42
44#define HUMIDIFIER_COOL_DOWN (unsigned long)30000
45
47void fogMachineInit();
48
65void fogMachineUpdate();
66
72void fogMachineEnable();
73
74#endif
void fogMachineEnable()
Enable the humidifier.
Definition: fogMachine.cpp:167
void fogMachineInit()
Initialize the fog machine( humidifier ).
Definition: fogMachine.cpp:50
void fogMachineUpdate()
Update the fog machine state.
Definition: fogMachine.cpp:57