Simple RGB LED controller for Mac OS X
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AudioVisualizer.h 434B

1234567891011121314151617181920
  1. //
  2. // AudioVisualizer.h
  3. // CaseLights
  4. //
  5. // Created by Thomas Buck on 01.01.16.
  6. // Copyright © 2016 xythobuz. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class AppDelegate;
  10. @interface AudioVisualizer : NSObject
  11. + (void)setDelegate:(AppDelegate *)delegate;
  12. + (void)setSensitivity:(float)sens;
  13. + (void)setShowWindow:(BOOL)showWindow;
  14. + (void)updateBuffer:(float *)buffer withBufferSize:(UInt32)bufferSize;
  15. @end