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.m 429B

123456789101112131415161718192021222324
  1. //
  2. // AudioVisualizer.m
  3. // CaseLights
  4. //
  5. // Created by Thomas Buck on 01.01.16.
  6. // Copyright © 2016 xythobuz. All rights reserved.
  7. //
  8. #import "AudioVisualizer.h"
  9. #import "AppDelegate.h"
  10. static AppDelegate *appDelegate = nil;
  11. @implementation AudioVisualizer
  12. + (void)setDelegate:(AppDelegate *)delegate {
  13. appDelegate = delegate;
  14. }
  15. + (void)updateBuffer:(float *)buffer withBufferSize:(UInt32)bufferSize {
  16. }
  17. @end