aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-05-20 15:29:48 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-05-20 15:29:48 +0000
commit1deea59ab7d556b9675fc247c3c2a58a120419e7 (patch)
tree3111d76d418edb7581c32b29522d2ed6eefa0d88
parentde48ec637a407c162cd90f822383fe3f1b9d0b89 (diff)
its messy, but digital output and PWM now work at the same time
svn path=/trunk/externals/hardware/arduino/; revision=5094
-rw-r--r--Pd_firmware/Pd_firmware.pde98
-rw-r--r--arduino-help.pd130
-rw-r--r--arduino.pd33
3 files changed, 182 insertions, 79 deletions
diff --git a/Pd_firmware/Pd_firmware.pde b/Pd_firmware/Pd_firmware.pde
index 098d878..2f703cd 100644
--- a/Pd_firmware/Pd_firmware.pde
+++ b/Pd_firmware/Pd_firmware.pde
@@ -19,8 +19,8 @@
*
* Pd->Arduino commands
* --------------------
- * 200-213 - set digital pin 0-13 to output
- * 214-227 - set digital pin 0-13 to input
+ * 200-213 - set digital pin 0-13 to INPUT
+ * 214-227 - set digital pin 0-13 to OUTPUT
* 230 - next byte sets PWM0 value
* 231 - next byte sets PWM1 value
* 232 - next byte sets PWM2 value
@@ -66,8 +66,8 @@
// for comparing along with INPUT and OUTPUT
#define PWM 2
-// this flag says the next serial input will be data, not control
-boolean waitForData = false;
+// this flag says the next serial input will be PWM data
+byte waitForPWMData = 0;
// this flag says the first data byte for the digital outs is next
boolean firstInputByte = false;
@@ -129,8 +129,9 @@ void setPinMode(int pin, int mode) {
pinMode(pin,OUTPUT);
}
else if( (mode == PWM) && (pin >= 9) && (pin <= 11) ) {
- digitalPinStatus = digitalPinStatus &~ (1 << pin);
+ digitalPinStatus = digitalPinStatus | (1 << pin);
pwmStatus = pwmStatus | (1 << pin);
+ pinMode(pin,OUTPUT);
}
}
@@ -138,27 +139,71 @@ void setPinMode(int pin, int mode) {
void checkForInput() {
if(serialAvailable()) {
while(serialAvailable()) {
- processInput(serialRead());
+ processInput( (byte)serialRead() );
}
}
}
// -------------------------------------------------------------------------
-void processInput(int inputData) {
+void processInput(byte inputData) {
+ byte i;
+ int mask;
+// byte writeTest;
+// byte highDigitalPinStatus;
+
// the PWM commands (230-232) have a byte of data following the command
- if (waitForData > 0) {
+ if (waitForPWMData > 0) {
printByte(150);
printByte(inputData);
- analogWrite(waitForData,inputData);
- waitForData = 0;
+ analogWrite(waitForPWMData,inputData);
+ waitForPWMData = 0;
}
- else if(inputData < 128) {
+ else if(inputData < 128) {
printByte(151);
- printByte(inputData);
-// TODO: this section is for digital out...
+ if(firstInputByte) {
+ printByte(160);
+ printByte(inputData);
+ // TODO: this section is for digital out...
+ for(i=0; i<7; ++i) {
+ mask = 1 << i;
+/* writeTest = digitalPinStatus;
+// writeTest = writeTest & mask;
+// printByte(writeTest);
+// if(writeTest) {
+// or
+/* if((byte)digitalPinStatus & mask) {
+// digitalWrite(i,(inputData & mask) >> i);
+ printByte(254);
+ printByte(i);
+ printByte(mask);
+ printByte(inputData & mask);
+ } */
+ }
+ firstInputByte = false;
+ }
+ else {
+ printByte(161);
+ printByte(inputData);
+ // output data for pins 7-13
+ //highDigitalPinStatus = digitalPinStatus >> 7;
+ for(i=7; i<TOTAL_DIGITAL_PINS; ++i) {
+ mask = 1 << i;
+ printByte(254);
+ printByte(i);
+ printByte(mask);
+// if(digitalPinStatus & mask) {
+// need to add test for pwmStatus
+ if( (digitalPinStatus & mask) && !(pwmStatus & mask) ) {
+ digitalWrite(i, inputData & (mask >> 7));
+ printByte(inputData & (mask >> 7));
+// printByte(highDigitalPinStatus & mask);
+ }
+ }
+ }
}
else {
- printByte(153);
+ printByte(152);
+ printByte(inputData);
switch (inputData) {
case 200:
case 201:
@@ -174,8 +219,7 @@ void processInput(int inputData) {
case 211:
case 212:
case 213:
- printByte(inputData);
- setPinMode(inputData-200,OUTPUT);
+ setPinMode(inputData-200,INPUT);
break;
case 214:
case 215:
@@ -191,17 +235,16 @@ void processInput(int inputData) {
case 225:
case 226:
case 227:
- printByte(inputData);
- setPinMode(inputData-214,INPUT);
+ setPinMode(inputData-214,OUTPUT);
break;
case 230:
case 231:
case 232:
- printByte(inputData);
- waitForData = inputData - 221; // set waitForData to the PWM pin number
- setPinMode(waitForData, PWM);
+ waitForPWMData = inputData - 221; // set waitForPWMData to the PWM pin number
+ setPinMode(waitForPWMData, PWM);
break;
case 255:
+ firstInputByte = true;
break;
}
}
@@ -222,8 +265,8 @@ void setup() {
// -------------------------------------------------------------------------
void loop() {
// read all digital pins
- transmitDigitalInput(0);
- transmitDigitalInput(7);
+ //transmitDigitalInput(0);
+ //transmitDigitalInput(7);
/*
* get analog in
*/
@@ -241,10 +284,15 @@ void loop() {
/* end with the cycle marker */
// bitshift the big stuff into the output byte
printByte(digitalPinStatus >> 7);
- // clear the 8th bit before truncating to a byte for small byte
+ // clear the 8th bit before truncating to a byte for small data byte
printByte(digitalPinStatus % 128);
+ printByte(pwmStatus >> 7);
+ printByte(pwmStatus % 128);
+
checkForInput();
- printByte(255);
+ printByte(255);
+ setPinMode(13,OUTPUT);
+ digitalWrite(13,HIGH);
}
diff --git a/arduino-help.pd b/arduino-help.pd
index ab232db..0ec5183 100644
--- a/arduino-help.pd
+++ b/arduino-help.pd
@@ -1,11 +1,11 @@
-#N canvas 245 4 630 669 10;
+#N canvas 390 0 638 592 10;
#X obj 478 -14 import cyclone zexy;
#X obj 9 25 nbx 6 16 -1e+037 1e+037 0 0 empty empty empty 0 -6 0 14
-3754 -1 -1 0 256;
#X obj 110 25 nbx 6 16 -1e+037 1e+037 0 0 empty empty empty 0 -6 0
14 -3754 -1 -1 0 256;
#X text 295 251 On Mac OS X \, set this to the right value:;
-#X msg 179 213 open \$1;
+#X msg 200 243 open \$1;
#N canvas 162 133 530 380 serin 0;
#X obj 120 61 cnv 15 15 15 empty \$0-number-canvas 2 4 7 0 14 -233017
-1 0;
@@ -24,26 +24,26 @@
#X connect 7 0 3 0;
#X connect 7 0 6 0;
#X coords 0 -1 1 1 76 17 1 60 60;
-#X restore 179 190 pd serin;
-#X text 260 191 serial port #;
-#X text 278 620 released under the GNU GPL;
-#X text 64 605 (C) Copyright 2006 Hans-Christoph Steiner <hans@at.or.at>
+#X restore 200 220 pd serin;
+#X text 197 202 serial port #;
+#X text 259 552 released under the GNU GPL;
+#X text 45 537 (C) Copyright 2006 Hans-Christoph Steiner <hans@at.or.at>
;
-#X obj 211 25 nbx 6 16 -1e+037 1e+037 0 0 empty empty empty 0 -6 0
+#X obj 510 161 nbx 6 16 -1e+037 1e+037 0 0 empty empty empty 0 -6 0
14 -3754 -1 -1 0 256;
#X obj 312 25 nbx 6 16 -1e+037 1e+037 0 0 empty empty empty 0 -6 0
14 -3754 -1 -1 0 256;
#X obj 413 25 nbx 6 16 -1e+037 1e+037 0 0 empty empty empty 0 -6 0
14 -3754 -1 -1 0 256;
#X obj 383 358 spigot;
-#X obj 412 339 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0
+#X obj 412 339 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 1
1;
-#X msg 239 213 close;
-#X obj 64 570 print --------------------;
-#X obj 466 515 receive \$0-A;
+#X msg 260 243 close;
+#X obj 34 476 print --------------------;
+#X obj 465 508 receive \$0-A;
#X obj 9 5 receive \$0-B;
#X obj 110 5 receive \$0-C;
-#X obj 211 5 receive \$0-D;
+#X obj 510 141 receive \$0-D;
#X obj 312 5 receive \$0-E;
#X obj 413 5 receive \$0-F;
#X msg 299 269 devicename /dev/tty.usbserial-1913;
@@ -54,15 +54,15 @@
#X obj 510 25 nbx 6 16 -1e+037 1e+037 0 0 empty empty empty 0 -6 0
14 -3754 -1 -1 0 256;
#X obj 510 5 receive \$0-G;
-#X obj 395 83 hradio 15 1 0 14 empty empty empty 0 -6 0 8 -262144 -1
--1 0;
-#X obj 372 84 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1
+#X obj 395 89 hradio 15 1 0 14 empty empty empty 0 -6 0 8 -262144 -1
+-1 9;
+#X obj 372 90 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 1 1
;
-#X obj 391 156 +;
-#X obj 372 130 * 14;
-#X obj 391 177 + 200;
-#X floatatom 477 130 5 0 0 0 - - -;
-#X obj 395 102 t b f;
+#X obj 391 162 +;
+#X obj 372 136 * 14;
+#X obj 391 183 + 200;
+#X floatatom 397 206 5 0 0 0 - - -;
+#X obj 395 108 t b f;
#X obj 249 414 tolist;
#X obj 252 522 print;
#X obj 252 503 list;
@@ -145,42 +145,57 @@
#X connect 26 0 15 0;
#X connect 27 0 16 0;
#X connect 28 0 17 0;
-#X restore 466 541 pd decode buttons;
-#X obj 57 55 hsl 128 15 0 255 0 0 empty empty empty -2 -6 0 8 -262144
--1 -1 1900 1;
-#X msg 78 531 bang;
-#X msg 21 221 255 \, 127 \, 127;
+#X restore 465 534 pd decode buttons;
+#X obj 57 70 hsl 128 15 0 1 0 0 empty empty PWM_control_(0-1) -2 -6
+1 10 -225271 -1 -1 800 0;
+#X msg 33 436 bang;
#X obj 235 297 arduino 3;
#X obj 123 399 select 255;
-#X floatatom 434 104 5 0 0 0 - - -;
-#X text 504 66 7;
-#X text 399 66 0;
-#X text 546 67 10;
-#X msg 54 118 \$2 \, \$1;
-#X obj 54 93 pack float float;
-#X msg 94 72 230;
-#X msg 123 72 231;
-#X msg 155 72 232;
-#X connect 4 0 48 0;
+#X floatatom 434 110 5 0 0 0 - - -;
+#X text 504 62 7;
+#X text 399 72 0;
+#X text 547 63 10;
+#X msg 54 154 \$2 \$1;
+#X obj 54 132 pack float symbol;
+#X obj 151 113 symbol;
+#X msg 165 91 PWM2;
+#X msg 129 91 PWM1;
+#X msg 94 91 PWM0;
+#X text 373 55 turn on output mode;
+#X obj 214 -3 bng 80 250 50 0 empty empty empty 0 -6 0 8 -258699 -1
+-1;
+#X msg 14 182 255 \, 127 \, 127;
+#X obj 203 91 bng 35 250 50 0 empty empty empty 0 -6 0 8 -24198 -1
+-1;
+#X obj 195 136 t b b;
+#X msg 219 155 2;
+#X msg 13 241 255 \, 126 \, 0;
+#X msg 114 176 230 \, 1 \, 231 \, 1 \, 214 \, 215 \, 216;
+#X msg 14 222 255 \, 127 \, 4;
+#X msg 13 201 255 \, 126 \, 8;
+#X text 504 72 0;
+#X text 547 73 3;
+#X msg 12 293 231 \, 1 \, 223 \, 255 \, 0 \, 12;
+#X connect 4 0 47 0;
#X connect 5 0 4 0;
#X connect 13 0 12 1;
-#X connect 14 0 48 0;
+#X connect 14 0 47 0;
#X connect 16 0 44 0;
#X connect 17 0 1 0;
#X connect 18 0 2 0;
-#X connect 22 0 48 0;
+#X connect 22 0 47 0;
#X connect 23 0 25 0;
#X connect 24 0 23 1;
#X connect 25 0 35 1;
#X connect 25 1 35 0;
#X connect 27 0 26 0;
#X connect 28 0 34 0;
-#X connect 28 0 50 0;
+#X connect 28 0 49 0;
#X connect 29 0 31 0;
#X connect 30 0 32 0;
#X connect 31 0 30 0;
#X connect 32 0 33 0;
-#X connect 32 0 48 0;
+#X connect 32 0 47 0;
#X connect 34 0 31 0;
#X connect 34 1 30 1;
#X connect 35 0 37 1;
@@ -188,19 +203,30 @@
#X connect 37 0 36 0;
#X connect 38 0 39 0;
#X connect 39 0 43 0;
-#X connect 40 0 49 0;
+#X connect 40 0 48 0;
#X connect 41 0 40 1;
#X connect 43 0 37 0;
-#X connect 45 0 55 0;
+#X connect 45 0 54 0;
#X connect 46 0 15 0;
-#X connect 47 0 48 0;
-#X connect 48 0 12 0;
-#X connect 48 0 23 0;
-#X connect 48 0 40 0;
-#X connect 49 0 15 0;
-#X connect 49 1 42 0;
-#X connect 54 0 48 0;
-#X connect 55 0 54 0;
-#X connect 56 0 55 1;
-#X connect 57 0 55 1;
-#X connect 58 0 55 1;
+#X connect 47 0 12 0;
+#X connect 47 0 23 0;
+#X connect 47 0 40 0;
+#X connect 48 0 15 0;
+#X connect 48 1 42 0;
+#X connect 53 0 47 0;
+#X connect 54 0 53 0;
+#X connect 55 0 54 1;
+#X connect 56 0 55 0;
+#X connect 57 0 55 0;
+#X connect 58 0 55 0;
+#X connect 60 0 14 0;
+#X connect 61 0 47 0;
+#X connect 62 0 63 0;
+#X connect 63 0 66 0;
+#X connect 63 1 64 0;
+#X connect 64 0 5 0;
+#X connect 65 0 47 0;
+#X connect 66 0 47 0;
+#X connect 67 0 47 0;
+#X connect 68 0 47 0;
+#X connect 71 0 47 0;
diff --git a/arduino.pd b/arduino.pd
index 2c3c665..dc10587 100644
--- a/arduino.pd
+++ b/arduino.pd
@@ -1,4 +1,4 @@
-#N canvas 81 0 548 475 10;
+#N canvas 81 0 564 491 10;
#X obj 388 -14 import cyclone zexy;
#X text 331 417 released under the GNU GPL;
#X text 117 402 (C) Copyright 2006 Hans-Christoph Steiner <hans@at.or.at>
@@ -84,6 +84,34 @@
#X obj 235 380 outlet;
#X obj 197 301 makefilename arduino%c;
#X obj 89 45 comport \$1 9600;
+#N canvas 0 0 466 316 command 0;
+#X obj 79 8 inlet;
+#X obj 313 267 outlet;
+#X obj 79 53 route PWM0 PWM1 PWM2;
+#X obj 155 114 * 255;
+#X obj 100 114 * 255;
+#X obj 45 114 * 255;
+#X obj 155 93 clip 0 1;
+#X obj 100 93 clip 0 1;
+#X obj 45 93 clip 0 1;
+#X msg 155 135 232 \, \$1;
+#X msg 100 135 231 \, \$1;
+#X msg 45 135 230 \, \$1;
+#X connect 0 0 2 0;
+#X connect 2 0 8 0;
+#X connect 2 1 7 0;
+#X connect 2 2 6 0;
+#X connect 2 3 1 0;
+#X connect 3 0 9 0;
+#X connect 4 0 10 0;
+#X connect 5 0 11 0;
+#X connect 6 0 3 0;
+#X connect 7 0 4 0;
+#X connect 8 0 5 0;
+#X connect 9 0 1 0;
+#X connect 10 0 1 0;
+#X connect 11 0 1 0;
+#X restore 89 21 pd command processing;
#X connect 3 0 5 0;
#X connect 3 1 27 0;
#X connect 4 0 3 0;
@@ -115,6 +143,7 @@
#X connect 26 0 4 0;
#X connect 26 1 3 0;
#X connect 27 0 5 1;
-#X connect 28 0 32 0;
+#X connect 28 0 33 0;
#X connect 31 0 7 0;
#X connect 32 0 29 0;
+#X connect 33 0 32 0;