Arduino Mega 2560 を max msp に接続する作業を行っています。Arduino2max arduino コードと max パッチを適用しました。
最大パッチを適用し、arduino から最大への 16 のアナログ入力すべてで成功しましたが、13 番を超えるデジタル ピンを最大 msp に取得できません。誰かがこれで成功したかどうか疑問に思っていましたか?
ヘルプやコメントをいただければ幸いです。
どうもありがとう
ジョー
これはArduino2max v.5から適応されたarduinoコードで、ここで見つけることができますhttp://www.arduino.cc/playground/Interfacing/MaxMSP
int x = 0;
int ledpin = 13;
void setup ()
{
// 115200 is the default Arduino Bluetooth speed
Serial.begin(115200);
///startup blink
digitalWrite(13,HIGH);
delay(600);
digitalWrite(13,LOW);
pinMode(13,INPUT);
}
void loop()
{
// Check serial buffer for characters
if (Serial.available() > 0){
if (1){ //Serial.read() == 'r') { // If an 'r' is received then read the pins
// Read and send analog pins 0-15
for (int pin= 0; pin<=15; pin++)
{
x = analogRead(pin);
sendValue (x);
}
// Read and send digital pins 2-53
for (int pin= 2; pin<=53; pin++)
{
x = digitalRead(pin);
sendValue (x);
}
// Send a carriage return to mark end of pin data.
Serial.println();
// add a delay to prevent crashing/overloading of the serial port
delay (5);
}
}
}
// function to send the pin value followed by a "space".
void sendValue (int x){
Serial.print(x);
Serial.print(32, BYTE);
}
再度、感謝します!