-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathconstants.js
More file actions
53 lines (53 loc) · 1.63 KB
/
constants.js
File metadata and controls
53 lines (53 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
export const temperatureIncrementedDecrementedDebounceTime = 1000;
export const localStorageKey = "projectOnyxVapeApp";
export const patreonLink = "https://www.patreon.com/ImACoderImACoderImACoder";
export const githubLink = "https://github.com/ImACoderImACoderImACoder";
export const redditLink = "https://www.reddit.com/user/ImACoderImACoder";
export const twitterLink = "https://twitter.com/ImmACoder";
export const cashAppLink = "https://cash.app/$imacoderimacoder";
export const instagramLink =
"https://www.instagram.com/imacoderimacoderimacoder";
export const defaultTemperatureArray = [180, 205];
export const defaultGlobalFanOnTimeInSeconds = 36.5;
export const defaultWorkflows = [
{
id: 1,
name: "Workflow #1",
payload: [
{ type: "heatOn", id: 1, payload: 185 },
{ type: "wait", id: 2, payload: 5 },
{ type: "fanOnGlobal", id: 3, payload: 36.5 },
{ type: "heatOff", id: 4 },
],
},
{
id: 2,
name: "Workflow #2",
payload: [
{ type: "heatOn", id: 1, payload: 190 },
{ type: "wait", id: 2, payload: 5 },
{ type: "fanOnGlobal", id: 3, payload: 36.5 },
{ type: "heatOff", id: 4 },
],
},
{
id: 3,
name: "Workflow #3",
payload: [
{ type: "heatOn", id: 1, payload: 195 },
{ type: "wait", id: 2, payload: 5 },
{ type: "fanOnGlobal", id: 3, payload: 36.5 },
{ type: "heatOff", id: 4 },
],
},
{
id: 4,
name: "Workflow #4",
payload: [
{ type: "heatOn", id: 1, payload: 200 },
{ type: "wait", id: 2, payload: 5 },
{ type: "fanOnGlobal", id: 3, payload: 36.5 },
{ type: "heatOff", id: 4 },
],
},
];