|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//
// 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;
@property NSMutableArray *channelProductAvailability;
@property NSMutableArray *channelStatus;
@property Boolean doorOpen;
@property Boolean coilOpen;
@property NSMutableArray *moneyCollected;
@property NSMutableArray *moneyReturned;
@property NSMutableArray *productsSold;
@property NSMutableArray *changeAvailable;
- (id) init;
- (void) setResponse:(NSString *)response;
@end
|