// // ConnectionController.h // sampleterm // // Created by Michael Testa on 11/1/12. // Copyright (c) Blueradios, Inc. All rights reserved. // #import #import "AppDelegate.h" #import "Waydio.h" @interface ConnectionController : UIViewController { UITextField *_inputText; NSMutableString *_outputText; //used as string data for textView to make string concatenations more efficient NSArray *_allCommands; //All commands sent by the get settings button NSMutableArray *_commandQueue; //An array of commands queued for sending } @property (strong, nonatomic) Waydio *waydioObject; @property (strong, nonatomic) IBOutlet UITextView *textView; @property (strong, nonatomic) IBOutlet UIButton *disconnectButton; @property (weak, nonatomic) IBOutlet UILabel *weightLabel; @property (weak, nonatomic) IBOutlet UILabel *weightReading; @property (weak, nonatomic) IBOutlet UILabel *batteryLabel; @property (weak, nonatomic) IBOutlet UILabel *batteryReading; @property (weak, nonatomic) IBOutlet UILabel *buttonReading; @end