Skip to content

Commit

Permalink
adjust sensor ranges and levels
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagohersan committed Mar 2, 2024
1 parent a46c9e0 commit 001f46b
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/lib/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,36 +33,36 @@ const SENSORS: SensorInfo[] = [
name: "Carbon Monoxide",
id: Sensors.co,
min: 0,
max: 100,
levels: [0, 20, 40, 60, 80],
units: "",
max: 2000,
levels: [0, 20, 400, 1000, 1800],
units: "ppm",
info: "Carbon Monoxide is...."
},
{
name: "Ethanol",
id: Sensors.eth,
min: 0,
max: 100,
levels: [0, 10, 20, 40, 80],
units: "",
max: 20,
levels: [0, 1, 5, 15, 18],
units: "ppm",
info: "Ethanol...."
},
{
name: "Hydrogen",
id: Sensors.h2,
min: 0,
max: 100,
levels: [0, 20, 40, 60, 80],
units: "",
max: 20,
levels: [0, 2, 4, 10, 18],
units: "ppm",
info: "Hydrogen measures...."
},
{
name: "Methane",
id: Sensors.meth,
min: 0,
max: 100,
levels: [0, 10, 20, 30, 40],
units: "",
min: 90,
max: 2000,
levels: [90, 100, 300, 500, 1400],
units: "ppm",
info: "Methane is...."
},
];
Expand Down

0 comments on commit 001f46b

Please sign in to comment.