Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: EnvironmentalService.h
- Revision:
- 18:7002e66af2e5
- Parent:
- 17:76787f5a334f
- Child:
- 22:79c64511d34d
diff -r 76787f5a334f -r 7002e66af2e5 EnvironmentalService.h
--- a/EnvironmentalService.h	Tue Apr 16 09:13:43 2019 +0000
+++ b/EnvironmentalService.h	Wed Apr 17 11:29:46 2019 +0000
@@ -52,15 +52,15 @@
   
   // Enum for pressure trend
   enum pressureTrendStates {
-    UNKNOWN,
-    FALLING_CONTINUOUSLY,
-    RISING_CONTINUOUSLY,
-    FALLING_STEADY,
-    RISING_STEADY,
-    FALLING_LESSER_RISE,
-    FALLING_GREATER_RISE,
-    RISING_GREATER_RISE,
-    RISING_LESSER_RISE,
-    STEADY
+    UNKNOWN                 = 0,
+    FALLING_CONTINUOUSLY    = 1,
+    RISING_CONTINUOUSLY     = 2,
+    FALLING_STEADY          = 3,
+    RISING_STEADY           = 4,
+    FALLING_LESSER_RISE     = 5,
+    FALLING_GREATER_RISE    = 6,
+    RISING_GREATER_RISE     = 7,
+    RISING_LESSER_RISE      = 8,
+    STEADY                  = 9
   };
 };