-
Notifications
You must be signed in to change notification settings - Fork 0
/
HeartRateController.m
264 lines (187 loc) · 8.41 KB
/
HeartRateController.m
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
//
// HeartRateController.m
// Falco Flash BLE
//
// Created by Falco eMotors Pvt. Ltd. on 04/01/2017.
// Copyright © 2017 Falco eMotors Pvt. Ltd. All rights reserved.
//
#import "HeartRateController.h"
#import "UARTPeripheral.h"
@interface HeartRateController ()
@end
@implementation HeartRateController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
UISwipeGestureRecognizer *swipeUpOrange = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(slideToUpWithGestureRecognizer:)];
swipeUpOrange.direction = UISwipeGestureRecognizerDirectionUp;
UISwipeGestureRecognizer *swipeDownOrange = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(slideToDownWithGestureRecognizer:)];
swipeDownOrange.direction = UISwipeGestureRecognizerDirectionDown;
[self.hrmView addGestureRecognizer:swipeUpOrange];
[self.hrmView addGestureRecognizer:swipeDownOrange];
UISwipeGestureRecognizer *swipeRightOrange = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(slideToRightWithGestureRecognizer:)];
swipeRightOrange.direction=UISwipeGestureRecognizerDirectionRight;
[self.hrmView addGestureRecognizer:swipeRightOrange];
[self viewWillAppear:YES];
}
-(void)slideToRightWithGestureRecognizer:(UISwipeGestureRecognizer *)gestureRecognizer{
[UIView animateWithDuration:0.5 animations:^{
[self dismissViewControllerAnimated:NO completion:Nil];
}];
}
-(void)selfrecall
{
switch (powerlevel)
{
case 0:
self.powerDisplayImageView.image = [UIImage imageNamed:@"Icon-50"];
_lblAssisting.text=@"";
break;
/***********case 1 to case 5 are used for positive powerlevel*************/
case 1:
self.powerDisplayImageView.image = [UIImage imageNamed:@"Icon-79"];
_lblAssisting.text=@"Assisting";
break;
case 2:
self.powerDisplayImageView.image = [UIImage imageNamed:@"Icon-80"];
_lblAssisting.text=@"Assisting";
break;
case 3:
self.powerDisplayImageView.image = [UIImage imageNamed:@"Icon-81"];
_lblAssisting.text=@"Assisting";
break;
case 4:
self.powerDisplayImageView.image = [UIImage imageNamed:@"Icon-82"];
_lblAssisting.text=@"Assisting";
break;
case 5:
self.powerDisplayImageView.image = [UIImage imageNamed:@"Icon-83"];
_lblAssisting.text=@"Assisting";
break;
/************case -1 to case -4 are used for negative powerlevel***********/
case -5:
self.powerDisplayImageView.image = [UIImage imageNamed:@"Icon-58"];
_lblAssisting.text=@"Regen";
break;
case -4:
self.powerDisplayImageView.image = [UIImage imageNamed:@"Icon-57"];
_lblAssisting.text=@"Regen";
break;
case -3:
self.powerDisplayImageView.image = [UIImage imageNamed:@"Icon-56"];
_lblAssisting.text=@"Regen";
break;
case -2:
self.powerDisplayImageView.image = [UIImage imageNamed:@"Icon-55"];
_lblAssisting.text=@"Regen";
break;
case -1:
self.powerDisplayImageView.image = [UIImage imageNamed:@"Icon-54"];
_lblAssisting.text=@"Regen";
break;
/** case 0 is used for set to 0 powerlevel ****/
default:
break;
}
[self performSelector:@selector(selfrecall) withObject:self afterDelay:0.250 ];
}
-(void)slideToUpWithGestureRecognizer:(UISwipeGestureRecognizer *)gestureRecognizer
{
if (receptionStartFlag==true)
{
if(powerlevel<5)
{
powerlevel++;
}
[self selfrecall];
//code for power level increment
if( powerlevel>5 || powerlevel<=-5 ) //condition for checking power level in between +5 to -5 set power level max to 5
powerlevel=5;
if (powerlevel<=5)//if powerlevel value is less than 5 then increase power level
{
positive_power=powerlevel;
positiveflagstatus=true;
// [_currentPeripheral positiveIncrement:@"544"];
}
if(powerlevel<=-1&&powerlevel>=-5) //if powerlevel value is negative then converted powerlevel in to positive and increased negative powerlevel
{
positive_power=(powerlevel);
negative_power=true;
}
// [_currentPeripheral positiveIncrement:@"544"];
positiveflagstatus=true;
// [self positiveIncrement:@"867"];
}
else
{
UIAlertController * alert = [UIAlertController
alertControllerWithTitle:@""
message:@"Please connect to motor"
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* yesButton = [UIAlertAction
actionWithTitle:@"OK" style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
//Handle your yes please button action here
}];
[alert addAction:yesButton];
[self presentViewController:alert animated:YES completion:nil];
}
}
-(void)slideToDownWithGestureRecognizer:(UISwipeGestureRecognizer *)gestureRecognizer
{
if (receptionStartFlag==true)
{
// flagStatus=true;
if(powerlevel>-5)
{
powerlevel--;
}
[self selfrecall];
//code for power level decrement
// if(flagStatus==true)
// {
if(powerlevel<=-5||powerlevel>5)//condition for checking power level in between +5 to -5 set power level max to -5
{
powerlevel=-5;
}
if(powerlevel>=0&&powerlevel<=5)//if powerlevel value is positive then increase power level and send power increase broadcast data
{
positive_power=powerlevel;
positiveflagstatus=true;
// [_currentPeripheral positiveIncrement:@"544"];
}
if (powerlevel<=-1 &&powerlevel>= -5) //if powerlevel value is negative then decrease power level and send power decrease broadcast data
{
negative_power=(powerlevel);
negativeflagstatus=true;
// [_currentPeripheral negativeDecrement:@"656"];
}
}
else
{
UIAlertController * alert = [UIAlertController
alertControllerWithTitle:@""
message:@"Please connect to motor"
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* yesButton = [UIAlertAction
actionWithTitle:@"OK" style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
//Handle your yes please button action here
}];
[alert addAction:yesButton];
[self presentViewController:alert animated:YES completion:nil];
}
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
/*
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/
@end