Mac OS X ambilight
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

AppDelegate.h 481B

1234567891011121314151617181920212223
  1. //
  2. // AppDelegate.h
  3. // DisplayBacklight
  4. //
  5. // Created by Thomas Buck on 21.12.15.
  6. // Copyright © 2015 xythobuz. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @class Serial;
  10. @interface AppDelegate : NSObject <NSApplicationDelegate>
  11. @property (weak) IBOutlet NSApplication *application;
  12. - (void)stopAmbilight;
  13. - (void)newDisplayList:(NSArray *)displayIDs;
  14. + (double)map:(double)val FromMin:(double)fmin FromMax:(double)fmax ToMin:(double)tmin ToMax:(double)tmax;
  15. @end