void setup() {
  DDRD &= -128;
  Serial.begin(115200);
}
 
void loop() {
  if (!(PIND & 128))
  {
    Serial.println("STISK");
    delay(100);
  }
}