Outils pour utilisateurs

Outils du site


communication_ss_r250n

Ceci est une ancienne révision du document !


Communiquer avec un Tascam SS-R250N

import processing.net.*;
 
Client c; 
String inString;
 
void setup() { 
  size (300, 150);
  c = new Client(this, "192.168.1.101", 23); 
  String mdp = "z";
  c.write("\r\n" + mdp + "\r\n");
} 
 
void draw() { 
  if (c.available() > 0) { 
    background(0); 
    inString = c.readString(); 
    println(inString); 
  }
} 
 
void keyPressed() {
  c.write("012\r\n"); // Envoi la commande lecture
}

Spécifications pour Telnet et RS232

communication_ss_r250n.1606844403.txt.gz · Dernière modification : 2020/12/01 17:40 de serge