質問編集履歴
1
誤字
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ArduinoからopenFrameworksにデータを送る方法
|
1
|
+
ArduinoからopenFrameworksにデータを送る方法を知りたい
|
test
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
### ArduinoからopenFrameworksにデータを送る方法
|
1
|
+
### ArduinoからopenFrameworksにデータを送る方法を知りたい
|
2
2
|
|
3
3
|
大学でarduinoとopenFrameworksを勉強している者です。
|
4
4
|
|
5
5
|
arduinoでの操作をopenframeworksに反映する課題が出ているのですが
|
6
6
|
|
7
|
-
arduinoでスイッチを押したとき、Serial.write(2);で情報を送り、openframeworksのdraw関数で描いた絵を表示させる。というプログラ
|
7
|
+
arduinoでスイッチを押したとき、Serial.write(2);で情報を送り、openframeworksのdraw関数で描いた絵を表示させる。というプログラムを作りたいのですが、arduinoとopenframeworksとの連携が出来ていないようで、arduinoでopenframeworksを制御できません。
|
8
|
-
|
8
|
+
|
9
|
-
エラーメッセージは出ていま
|
9
|
+
エラーメッセージは出ておらず、真っ暗な画面が表示されています。
|
10
10
|
|
11
11
|
|
12
12
|
|
@@ -74,11 +74,9 @@
|
|
74
74
|
|
75
75
|
#openFrameworks
|
76
76
|
|
77
|
-
|
77
|
+
```ここに言語名を入力
|
78
|
-
|
78
|
+
|
79
|
-
|
79
|
+
###include "ofMain.h"
|
80
|
-
|
81
|
-
|
82
80
|
|
83
81
|
class ofApp : public ofBaseApp {
|
84
82
|
|
@@ -126,6 +124,56 @@
|
|
126
124
|
|
127
125
|
|
128
126
|
|
127
|
+
### #include "ofApp.h"
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
class ofApp : public ofBaseApp {
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
public:
|
136
|
+
|
137
|
+
void setup();
|
138
|
+
|
139
|
+
void update();
|
140
|
+
|
141
|
+
void draw();
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
void keyPressed(int key) {};
|
146
|
+
|
147
|
+
void keyReleased(int key) {};
|
148
|
+
|
149
|
+
void mouseMoved(int x, int y) {};
|
150
|
+
|
151
|
+
void mouseDragged(int x, int y, int button) {};
|
152
|
+
|
153
|
+
void mousePressed(int x, int y, int button) {};
|
154
|
+
|
155
|
+
void mouseReleased(int x, int y, int button) {};
|
156
|
+
|
157
|
+
void mouseEntered(int x, int y) {};
|
158
|
+
|
159
|
+
void mouseExited(int x, int y) {};
|
160
|
+
|
161
|
+
void windowResized(int w, int h) {};
|
162
|
+
|
163
|
+
void dragEvent(ofDragInfo dragInfo) {};
|
164
|
+
|
165
|
+
void gotMessage(ofMessage msg) {};
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
ofEasyCam cam;
|
170
|
+
|
171
|
+
ofSerial serial;
|
172
|
+
|
173
|
+
};
|
174
|
+
|
175
|
+
|
176
|
+
|
129
177
|
|
130
178
|
|
131
179
|
###include "ofApp.h"
|
@@ -240,7 +288,7 @@
|
|
240
288
|
|
241
289
|
}
|
242
290
|
|
243
|
-
|
291
|
+
```
|
244
292
|
|
245
293
|
|
246
294
|
|