Simple RGB LED controller for Mac OS X
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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