-
Notifications
You must be signed in to change notification settings - Fork 0
/
OGT_Bay.py
50 lines (41 loc) · 1.04 KB
/
OGT_Bay.py
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
import OGT_Plant as pl
from pandas import DataFrame
class BayParts:
baySoilLVL:float
bayPlant:pl.Plant
class Tent():
tent_Name :str
tent_Length :int
tent_Width :int
tent_Height :int
tent_Total_Wattage :int
tent_Light_Count :int
tent_Airflow :bool
tent_Bay_Count :int
tent_Bay_Type :str
@staticmethod
def Test_Data()->dict:
return {
"tent_Name": ["Test Tent"],
"tent_Length": [20],
"tent_Width": [10],
"tent_Height": [8],
"tent_Total_Wattage": [1000],
"tent_Light_Count": [20],
"tent_Airflow": [200],
"tent_Bay_Count": [5],
"tent_Bay_Type": ["Double"]
}
@staticmethod
def Tent_As_Header() -> list[str]:
return [
"tent_Name",
"tent_Length",
"tent_Width",
"tent_Height",
"tent_Total_Wattage",
"tent_Light_Count",
"tent_Airflow",
"tent_Bay_Count",
"tent_Bay_Type",
]