From ca3a5af54e354574f11414465013865826f88a49 Mon Sep 17 00:00:00 2001 From: Holger Wirtz Date: Thu, 3 May 2018 11:17:27 +0200 Subject: [PATCH] Renamed to MicroDexed --- DueDexed.ino | 24 ------------------------ MicroDexed.ino | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+), 24 deletions(-) delete mode 100644 DueDexed.ino create mode 100644 MicroDexed.ino diff --git a/DueDexed.ino b/DueDexed.ino deleted file mode 100644 index 997d474..0000000 --- a/DueDexed.ino +++ /dev/null @@ -1,24 +0,0 @@ -// DueDexed -// -// $HOME/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/arm-none-eabi/include/sys/unistd.h: -// //int _EXFUN(link, (const char *__path1, const char *__path2 )); -// - -#include -#include "dexed.h" - -#define RATE 128 - -Dexed* dexed=new Dexed(RATE); - -void setup() -{ - Serial.begin(115200); - Serial.println("Dexed"); -} - -void loop() -{ - -} - diff --git a/MicroDexed.ino b/MicroDexed.ino new file mode 100644 index 0000000..c857802 --- /dev/null +++ b/MicroDexed.ino @@ -0,0 +1,20 @@ +// MicroDexed + +#include +#include "dexed.h" + +#define RATE 128 + +Dexed* dexed=new Dexed(RATE); + +void setup() +{ + Serial.begin(115200); + Serial.println(F("MicroDexed")); +} + +void loop() +{ + +} +