Browse Source

Check if controller is accessible before getting value

Abdullah ibn Nadjo 7 years ago
parent
commit
3b2835b626
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      src/light.c

+ 4
- 4
src/light.c View File

736
   {
736
   {
737
     unsigned long currVal = 0;
737
     unsigned long currVal = 0;
738
 
738
 
739
-    if(light_getMaxBrightness(light_currentController, &currVal))
739
+    if(light_controllerAccessible(light_currentController))
740
     {
740
     {
741
 
741
 
742
-      if(light_controllerAccessible(light_currentController))
742
+      if(light_getMaxBrightness(light_currentController, &currVal))
743
       {
743
       {
744
         if(currVal > bestValYet)
744
         if(currVal > bestValYet)
745
         {
745
         {
751
           LIGHT_NOTE("ignoring controller as better one already found");
751
           LIGHT_NOTE("ignoring controller as better one already found");
752
         }
752
         }
753
       }else{
753
       }else{
754
-        LIGHT_WARN("controller not accessible");
754
+        LIGHT_WARN("could not read max brightness from file");
755
       }
755
       }
756
     }else{
756
     }else{
757
-      LIGHT_WARN("could not read max brightness from file");
757
+      LIGHT_WARN("controller not accessible");
758
     }
758
     }
759
   }
759
   }
760
 
760