because you worked so hard ![]()
//
//Â Â FILE: .pde
//Â AUTHOR: Stefan
//Â Â DATE:Â
//
// PUPROSE:
//
int PIN[12];
int sensorValue[10];
void setup()
{
 for (uint8_t i=0; i< 10; i++)
 {
  PIN[i] = i+1;
 }Â
 for (uint8_t i=0; i< 10; i++)
 {
  pinMode(PIN[i], INPUT);
 }
 Serial.begin(115200);
}
void loop()
{
 for (uint8_t i=0; i< 10; i++)
 {
  sensorValue[i] = digitalRead(PIN[i]);
 }Â
 for (uint8_t i=0; i< 10; i++)
 {
  Serial.print("D");
  Serial.print(PIN[i]);
  Serial.print(": \t");
  Serial.println(sensorValue[i]);
 }Â
 delay (1500);
}
Rob
PS, if English is not your native language you better set it in your profile than other people will understand it directly,
By the way your English is not bad, visit the forum often and you will learn more than only Arduinese ![]()