Skip to content
Snippets Groups Projects
main.cpp 188 B
Newer Older
drouver-helmuth's avatar
drouver-helmuth committed
#include <Arduino.h>
#include <MFRC522.h>

void setup() {
  Serial.begin(9600);
  Serial.println("Ich wurde gestartet!");
}

void loop() {

  delay(1000);
  Serial.println("Ich funze!");
}