Simple RGB LED controller for Mac OS X
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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