Added some more `IOHWSensor' types..
authorocto <octo>
Fri, 14 Apr 2006 17:00:44 +0000 (17:00 +0000)
committerocto <octo>
Fri, 14 Apr 2006 17:00:44 +0000 (17:00 +0000)
TODO
src/apple_sensors.c

diff --git a/TODO b/TODO
index b8a5b33..9cec87b 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,4 +1,3 @@
-src/apple_sensors.c: Check for more sensor types.
 src/battery.c: commend not working code.
 general: build Darwin package
 
index 24e8f97..37bd5c3 100644 (file)
@@ -224,11 +224,17 @@ static void as_read (void)
                                        &value_int))
                        continue;
 
+               /* Found e.g. in the 1.5GHz PowerBooks */
                if (strcmp (type, "temperature") == 0)
                {
                        value_double = ((double) value_int) / 65536.0;
                        strncpy (type, "apple_temperature", 128);
                }
+               else if (strcmp (type, "temp") == 0)
+               {
+                       value_double = ((double) value_int) / 10.0;
+                       strncpy (type, "apple_temperature", 128);
+               }
                else if (strcmp (type, "fanspeed") == 0)
                {
                        value_double = ((double) value_int) / 65536.0;
@@ -239,6 +245,11 @@ static void as_read (void)
                        /* Leave this to the battery plugin. */
                        continue;
                }
+               else if (strcmp (type, "adc") == 0)
+               {
+                       value_double = ((double) value_int) / 10.0;
+                       strncpy (type, "apple_temperature", 128);
+               }
                else
                {
                        DBG ("apple_sensors: Read unknown sensor type: %s",