Esempio n. 1
0
 public static void LogiLedShutdown()
 {
     if (GHUB)
     {
         GHUBImports.LogiLedShutdown();
     }
     else
     {
         LGSImports.LogiLedShutdown();
     }
 }
Esempio n. 2
0
 public static bool LogiLedRestoreLighting()
 {
     return(GHUB ? GHUBImports.LogiLedRestoreLighting() : LGSImports.LogiLedRestoreLighting());
 }
Esempio n. 3
0
 public static bool LogiLedSaveCurrentLighting()
 {
     return(GHUB ? GHUBImports.LogiLedSaveCurrentLighting() : LGSImports.LogiLedSaveCurrentLighting());
 }
Esempio n. 4
0
 public static bool LogiLedSetLightingForKeyWithKeyName(LedId keyCode, Color color)
 {
     var(R, G, B) = GetColorValues(color);
     return(GHUB ? GHUBImports.LogiLedSetLightingForKeyWithKeyName(keyCode, R, G, B) :
            LGSImports.LogiLedSetLightingForKeyWithKeyName(keyCode, R, G, B));
 }
Esempio n. 5
0
 public static bool LogiLedSetLightingForTargetZone(DeviceType deviceType, int zone, Color color)
 {
     var(R, G, B) = GetColorValues(color);
     return(GHUB ? GHUBImports.LogiLedSetLightingForTargetZone((byte)deviceType, zone, R, G, B) :
            LGSImports.LogiLedSetLightingForTargetZone((byte)deviceType, zone, R, G, B));
 }
Esempio n. 6
0
 public static bool LogiLedSetLightingFromBitmap(byte[] bitmap)
 {
     return(GHUB ? GHUBImports.LogiLedSetLightingFromBitmap(bitmap) :
            LGSImports.LogiLedSetLightingFromBitmap(bitmap));
 }
Esempio n. 7
0
 public static bool LogiLedExcludeKeysFromBitmap(LedId[] keyList, int listCount)
 {
     return(GHUB ? GHUBImports.LogiLedExcludeKeysFromBitmap(keyList, listCount) :
            LGSImports.LogiLedExcludeKeysFromBitmap(keyList, listCount));
 }
Esempio n. 8
0
 public static bool LogiLedSetLighting(Color color)
 {
     var(R, G, B) = GetColorValues(color);
     return(GHUB ? GHUBImports.LogiLedSetLighting(R, G, B) : LGSImports.LogiLedSetLighting(R, G, B));
 }
Esempio n. 9
0
 public static bool LogiLedSetTargetDevice(int targetDevice)
 {
     return(GHUB ? GHUBImports.LogiLedSetTargetDevice(targetDevice) : LGSImports.LogiLedSetTargetDevice(targetDevice));
 }
Esempio n. 10
0
 public static bool LogiLedInit()
 {
     return(GHUB ? GHUBImports.LogiLedInit() : LGSImports.LogiLedInit());
 }