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.

Thread.h 422B

1234567891011121314151617181920212223
  1. //
  2. // Thread.h
  3. // SerialGamepad
  4. //
  5. // Created by Thomas Buck on 15.12.15.
  6. // Copyright © 2015 xythobuz. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class AppDelegate;
  10. @interface Thread : NSThread
  11. @property BOOL running;
  12. @property int fd;
  13. @property (strong) NSString *portName;
  14. @property (weak) AppDelegate *appDelegate;
  15. - (id)initWithDelegate:(AppDelegate *)delegate;
  16. - (NSInteger)openPort;
  17. @end