This commit is contained in:
Your Name
2025-03-27 17:23:01 +01:00
parent a67530ced6
commit 2d2f728bbc
12 changed files with 1145 additions and 739 deletions

View File

@@ -87,6 +87,14 @@ CREATE TABLE IF NOT EXISTS data_CO2 (
)
""")
# Create a table sensirion SFA30
cursor.execute("""
CREATE TABLE IF NOT EXISTS data_sensirionSFA30 (
timestamp TEXT,
CH2O INTEGER
)
""")
# Create a table BME280
cursor.execute("""
CREATE TABLE IF NOT EXISTS data_BME280 (

View File

@@ -36,7 +36,7 @@ script_configs = [
("BME280/get_data_v2.py", False),
("envea/read_value_v2.py", False),
("MH-Z19/write_data.py", True),
("windMeter/read.py", False),
("sensirion/SFA30_read.py", False),
("sqlite/flush_old_data.py", True)
]