Newer
Older
Hardware / FaultInjection / examples / FaultyCat / 01_simple_restart / example_v1.0.ino
0xRoM on 11 Feb 316 bytes initial commit
  1. #include <SoftwareSerial.h>
  2.  
  3. #define RX 3 // *** D3, Pin 2
  4. #define TX 4 // *** D4, Pin 3
  5. SoftwareSerial Serial(RX, TX);
  6.  
  7. void setup(){
  8. Serial.begin(9600);
  9. Serial.println("Initializing...");
  10. }
  11.  
  12. void loop() {
  13. // put your main code here, to run repeatedly:
  14. Serial.println("running");
  15. delay(1000);
  16. }
Buy Me A Coffee