Sensors.h
703 Bytes
//
// 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