void  printAsciiTable(void)
{
  int j;
  float avg=0;
  for(j=0;j<255;j++)
    {

     Serial.print("Dec : "); 
     Serial.print(j); 
     Serial.print("  , ");  
     Serial.println(char(j));
    }
}

void setup() {
  // put your setup code here, to run once:
  Serial.begin(115200);
  Serial.println("Array start");
  printAsciiTable();
  
}



void loop() {
  // put your main code here, to run repeatedly:
  delay(10); // this speeds up the simulation
}