Newer
Older
Hardware / FaultInjection / examples / FaultyCat / 01_simple_restart / example_v1.0.ino
0xRoM on 11 Feb 316 bytes initial commit
#include <SoftwareSerial.h>

#define RX    3   // *** D3, Pin 2
#define TX    4   // *** D4, Pin 3
SoftwareSerial Serial(RX, TX);

void setup(){
  Serial.begin(9600);
  Serial.println("Initializing...");
}

void loop() {
  // put your main code here, to run repeatedly:
  Serial.println("running");
  delay(1000);
}