mercoledì 6 novembre 2019

Arduino N° 22 - Stampa seriale in vari formati

Arduino N° 21

 Achille De Santis

Arduino N° 23



Questo sketch è utile per familiarizzarsi con la scrittura seriale e con le basi delle numerazioni usate in Elettronica ed Informatica.


/* ----------------------------- Inizio Programma --------------------------------------------
 * Uses a FOR loop for data and prints a number in various formats.
 * Modificato da Achille De Santis 07-04-2019
 * Per vedere la stampa, aprire il monitor seriale.
*/

int x = 0;    // variable

void setup()
  { Serial.begin(9600); }   // open the serial port at 9600 bps: 

void loop()
{                           // print labels - stampa le etichette, tabulando opportunamente.
  Serial.print("NO FORMAT\t", "DEC\t", "HEX\t", "OCT\t", "BIN\n" );

  for(x=0; x<64; x++)
  {   // only part of the ASCII chart, change to suit
      // print it out in many formats: stampa, tabulando, in vari firmati
    Serial.print(x, "\t",x,DEC, "\t",x,HEX, "\t",x,OCT, "\t",x,BIN );  // print as an ASCII-encoded decimal
    delay(200);             // delay 200 milliseconds
  }
  Serial.println("");       // prints another carriage return
  delay(500);
}
// -------------------------------- Fine Programma ----------------------------------------------

Arduino N° 23

Nessun commento:

Posta un commento