Blame view

BT Vendor/Sensors.h 823 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
//  Sensors.h
//  DUREX Vendor Control
//
//  Created by Imanol Barba on 9/5/14.
//  Copyright (c) 2014 Emmoco. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "CommunicationProtocol.h"

@interface Sensors : NSObject

@property (strong,nonatomic) NSString *response;
@property NSUInteger numChannels;
Imanol-Mikel Barba Sabariego authored
16
17
@property (strong,nonatomic) NSMutableArray *channelProductAvailability;
@property (strong,nonatomic) NSMutableArray *channelStatus;
Imanol-Mikel Barba Sabariego authored
18
19
@property Boolean doorOpen;
@property Boolean coilOpen;
Imanol-Mikel Barba Sabariego authored
20
21
22
23
@property (strong,nonatomic) NSMutableArray *moneyCollected;
@property (strong,nonatomic) NSMutableArray *moneyReturned;
@property (strong,nonatomic) NSMutableArray *productsSold;
@property (strong,nonatomic) NSMutableArray *changeAvailable;
Imanol-Mikel Barba Sabariego authored
24
25

- (id) init;
Imanol-Mikel Barba Sabariego authored
26
- (void) setResponseValue: (NSString *)response;
Imanol-Mikel Barba Sabariego authored
27
28

@end