forked from iulikik/ChainMaster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotepad.m
More file actions
204 lines (139 loc) · 5.81 KB
/
notepad.m
File metadata and controls
204 lines (139 loc) · 5.81 KB
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
#import <Foundation/Foundation.h>
// ViewController.m
// Chain Master
//
// Created by IULIAN MORARI on 1/31/18.
// Copyright © 2018 Ik Moraru. All rights reserved.
//
#import "ViewController.h"
@interface ViewController ()
@property (weak, nonatomic) IBOutlet UIButton *goButton;
@property (weak, nonatomic) IBOutlet UISegmentedControl *seg1;
@property (weak, nonatomic) IBOutlet UISegmentedControl *seg2;
@property (weak, nonatomic) IBOutlet UISegmentedControl *seg3;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
[self initNetworkCommunication];
}
- (void)initNetworkCommunication {
CFReadStreamRef readStream;
CFWriteStreamRef writeStream;
CFStreamCreatePairWithSocketToHost(NULL, (CFStringRef)@"192.168.0.39", 7777, &readStream, &writeStream);
_inputStream = (NSInputStream *)CFBridgingRelease(readStream);
_outputStream = (NSOutputStream *)CFBridgingRelease(writeStream);
[_inputStream setDelegate:self];
[_outputStream setDelegate:self];
[_inputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[_outputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[_inputStream open];
[_outputStream open];
}
- (IBAction)ToggleLight:(id)sender {
UISegmentedControl button = ((UISegmentedControl)sender);
long tag = button.tag;
NSString *command = @"STOP";
if(button.selectedSegmentIndex == 0) {
command = (@"UP");
} else if(button.selectedSegmentIndex == 1) {
command = (@"STOP");
} else if(button.selectedSegmentIndex == 2) {
command = (@"DOWN");
}
NSString *response = [NSString stringWithFormat:@"Motor%ld%@", tag , command];
NSData *data = [[NSData alloc] initWithData:[response dataUsingEncoding:NSASCIIStringEncoding]];
[_outputStream write:[data bytes] maxLength:[data length]];
NSLog(@"%@", response);
}
- (void)sendMovementActionToController:(UISegmentedControl *) segmentedControl {
UISegmentedControl button = ((UISegmentedControl)segmentedControl);
long tag = button.tag;
if(button.selectedSegmentIndex == 0) {
[self writeOutputStreamWithTag:tag command:@"UP"];
} else if(button.selectedSegmentIndex == 2) {
[self writeOutputStreamWithTag:tag command:@"DOWN"];
}
}
- (void)writeOutputStreamWithTag:(NSString *)tag command:(NSString *)command {
NSString *response = [NSString stringWithFormat:@"Motor%ld%@", tag , command];
NSData *data = [[NSData alloc] initWithData:[response dataUsingEncoding:NSASCIIStringEncoding]];
[_outputStream write:[data bytes] maxLength:[data length]];
}
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)eventt {
// TODO we should collect all data from seg controller when the touch was initiated
}
- (void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
UITouch *touch = [[event allTouches] anyObject];
CGPoint touchLocation = [touch locationInView:self.view];
if (CGRectContainsPoint(goButton.frame, touchLocation)) {
//this should be called continously while keeping go button pressed
NSLog(@" touched");
[self sendMovementActionToController:seg1];
[self sendMovementActionToController:seg2];
[self sendMovementActionToController:seg3];
}
}
- (void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
[self writeOutputStreamWithTag:seg1.tag command:@"STOP"];
[self writeOutputStreamWithTag:seg2.tag command:@"STOP"];
[self writeOutputStreamWithTag:seg3.tag command:@"STOP"];
}
- (IBAction)goButtonPressed:(id)sender {
NSLog(@"GO button pressed");
}
@end
//----------------------- OLD WORKING VERSION --------------------------//
//
// ViewController.m
// Chain Master
//
// Created by IULIAN MORARI on 1/31/18.
// Copyright © 2018 Ik Moraru. All rights reserved.
//
#import "ViewController.h"
@interface ViewController ()
@property (weak, nonatomic) IBOutlet UIButton *goButton;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
[self initNetworkCommunication];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)initNetworkCommunication {
CFReadStreamRef readStream;
CFWriteStreamRef writeStream;
CFStreamCreatePairWithSocketToHost(NULL, (CFStringRef)@"192.168.0.39", 7777, &readStream, &writeStream);
_inputStream = (NSInputStream *)CFBridgingRelease(readStream);
_outputStream = (NSOutputStream *)CFBridgingRelease(writeStream);
[_inputStream setDelegate:self];
[_outputStream setDelegate:self];
[_inputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[_outputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[_inputStream open];
[_outputStream open];
}
- (IBAction)ToggleLight:(id)sender {
UISegmentedControl *button = ((UISegmentedControl*)sender);
long tag = button.tag;
NSString *command = @"STOP";
if(button.selectedSegmentIndex == 0) {
command = (@"UP"); }
else if(button.selectedSegmentIndex == 1) {
command = (@"STOP"); }
else if(button.selectedSegmentIndex == 2) {
command = (@"DOWN"); }
NSString *response = [NSString stringWithFormat:@"Motor%ld%@", tag , command];
NSData *data = [[NSData alloc] initWithData:[response dataUsingEncoding:NSASCIIStringEncoding]];
[_outputStream write:[data bytes] maxLength:[data length]];
NSLog(@"%@", response);
}
- (IBAction)goButtonPressed:(id)sender {
NSLog(@"GO button pressed");
}
@end