Quantcast
Channel: Processing Forum
Viewing all articles
Browse latest Browse all 1768

how to draw a design with a touch screen?

$
0
0
hello,
i'm from belgium and i have a projet with processing .
for my project i want tu draw a picture with a touch screen ( i taked that from nintendo ds and i used that with arduino).
this is my code:
 
// programme de tracage depuis processing
// avec saisie par ecran tactile (nitendo
// ds reconditioner).
// Pirrera C. Delrot A. et Mercier D.
import processing.serial.*;//on introduit la librairie serial qui permet
// de prendre les donnes envoyer par le port com
Serial EcranDs; // on donne un nom au port

void setup()
{
  size( 800, 800 );//taille fenetre
  background( 255 );// couleur du fond
  EcranDs = new Serial(this, Serial.list()[0], 9600); //[port] de l entree et
  EcranDs.bufferUntil(' ');
}
 
void draw() { 
 
}

void serialEvent( Serial EcranDs ){
  frameRate(60);//images par seconde
 
 
  String Lecture = EcranDs.readStringUntil( '\n' );//on lit ce que le port com nous envoi
 //ligne par ligne
  if( Lecture != null ){
    Lecture = trim( Lecture );
    int[] coords = int( split( Lecture, ',' ) );// on separe les cordonnes x et y
    //car on resoit x , y
    background(255);//couleur du fond (blanck)
    stroke(100);// couleur du tour du cercle
    fill(100);// couleur de l interieu du cercle
    int x = coords[0];
    int y =  coords[1];
    // on va limiter les contours du dessin
    if (x<700 & y<700){
      if (x>0 & y>0){
        ellipse(y, x, 10, 10); // permet de tracer un cercle qui suit notre point

      }
    }
  }
 
}
how to draw a design ( a draw , a picture )with a touch screen?
the  point follows my position but i don t know how to draw a design with a touch screen.
 
if you can corect my code it's nice . thanks.
sorry for my english (i speak fench and italian).
 

Viewing all articles
Browse latest Browse all 1768

Trending Articles