From 55f916e0d51e17020d8ce2bf86bebf6029158107 Mon Sep 17 00:00:00 2001
From: marqdevx
Date: Mon, 31 May 2021 17:14:46 +0200
Subject: [PATCH] Delete Edge Control Getting Started.ino
---
.../Edge Control Getting Started.ino | 30 -------------------
1 file changed, 30 deletions(-)
delete mode 100644 examples/Edge Control Getting Started/Edge Control Getting Started.ino
diff --git a/examples/Edge Control Getting Started/Edge Control Getting Started.ino b/examples/Edge Control Getting Started/Edge Control Getting Started.ino
deleted file mode 100644
index 19caaf5..0000000
--- a/examples/Edge Control Getting Started/Edge Control Getting Started.ino
+++ /dev/null
@@ -1,30 +0,0 @@
-#include
-
-void setup() {
- Serial.begin(9600);
-
- // Set the timeout
- auto startNow = millis() + 2500;
- while (!Serial && millis() < startNow);
- Serial.println("Hello, Edge Control Sketch!");
-
- // Enable power lines
- Power.enable3V3();
- Power.enable5V();
-
- // Start the I2C connection
- Wire.begin();
-
- // Initialize the expander pins
- Expander.begin();
- Expander.pinMode(EXP_LED1, OUTPUT);
-}
-
-void loop() {
- // put your main code here, to run repeatedly:
- Serial.println("Blink");
- Expander.digitalWrite(EXP_LED1, LOW);
- delay(500);
- Expander.digitalWrite(EXP_LED1, HIGH);
- delay(500);
-}
\ No newline at end of file