Skip to content

Commit

Permalink
Revert "changement TypeDonnée.java"
Browse files Browse the repository at this point in the history
This reverts commit d38af38.
  • Loading branch information
IUT BLAGNAC committed Dec 6, 2024
1 parent 105e3b2 commit d7d9769
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Application/app/src/main/java/sae/appli/TypeDonnee.java
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
package sae.appli;

public enum TypeDonnee {
temperature("temperature", 20, 30),
humidity("humidity", 50, 70),
co2("co2", 450, 1500),
tvoc("tvoc", 200, 400),
activity("activity", 100, 500),
illumination("illumination", 1, 60),
infrared("infrared", 1, 15),
infrared_and_visible("infrared_and_visible", 1, 40),
pressure("pressure", 980, 990);
TEMPERATURE("temperature", 20, 30),
HUMIDITY("humidity", 50, 70),
CO2("co2", 450, 1500),
TVOC("tvoc", 200, 400),
ACTIVITY("activity", 100, 500),
ILLUMINATION("illumination", 1, 60),
INFRARED("infrared", 1, 15),
INFRARED_AND_VISIBLE("infrared_and_visible", 1, 40),
PRESSURE("pressure", 980, 990);

private final String nom; // Nom de la donnée
private int seuilMin; // Seuil minimum (modifiable)
Expand Down

0 comments on commit d7d9769

Please sign in to comment.