|
1
2
3
4
5
6
7
8
9
10
11
|
//
// CommunicationProtocol.h
// DUREX Vendor Control
//
// Created by Imanol Barba on 5/23/14.
// Copyright (c) 2014 Emmoco. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "EMFramework.h"
|
|
12
|
#define SLEEP_MS ((int)100)
|
|
13
14
15
|
#define MAX_STRING_LENGTH ((int)200)
#define MAX_RETRIES ((int)3)
#define MAX_PRODUCT_NAME_LENGTH ((int)64)
|
|
16
|
#define MAX_CHANNELS ((int)16)
|
|
17
18
19
|
#define MONEY_IN_NUM_UNITS ((int)6)
#define MONEY_OUT_NUM_UNITS ((int)3)
#define CHANGE_NUM_UNITS ((int)2)
|
|
20
|
#define MAX_PRODUCTS ((int)16)
|
|
21
|
#define SALE_STRING_LENGTH ((int)36)
|
|
22
|
#define REPORT_SERVER_URL @"http://seneca.upc.es:8090/machine"
|
|
23
24
25
|
@interface CommunicationProtocol : NSObject
|
|
26
27
|
-(void) writeMessage: (NSString*) message;
-(void) readMessage;
|
|
28
|
-(Boolean) establishConnection;
|
|
29
30
31
|
-(Boolean) updateTime: (NSDateComponents*) date;
-(Boolean) updatePrice: (uint8_t) channel : (uint8_t) product : (uint8_t) eur : (uint8_t) cents;
-(Boolean) updateProductName: (uint8_t) channel : (uint8_t) product : (NSString*) name;
|
|
32
|
-(NSString*) readSensorData;
|
|
33
|
-(NSString*) readSalesLog: (NSDateComponents*) start : (NSDateComponents*) end;
|
|
34
35
36
|
+(id) sharedProtocol;
@end
|