From 8a6b088ea7743798e0fbabc53c3525951d03a985 Mon Sep 17 00:00:00 2001 From: Christian Colglazier Date: Sun, 26 Jul 2020 16:29:40 -0400 Subject: [PATCH] Setup up project name --- README.md | 8 +++----- src/main.cpp | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3b88633..13acbf5 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,11 @@ -# Daisy Patch Template +# Cascade -A starting point for creating Daisy Patch Projects. +Custom firmware for the Electrosmith Daisy Patch. ## Setup & Build 1. Create git repository ```sh -git clone --recurse-submodules git@github.com:AquaMorph/DaisyPatchTemplate.git [Project directory name] -git remote set-url origin [New git url] -git push +git clone --recurse-submodules git@github.com:AquaMorph/Cascade.git ``` 2. Build project ```sh diff --git a/src/main.cpp b/src/main.cpp index d986fb6..1d9783d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -30,7 +30,7 @@ void ProcessOled() { std::string str; char* cstr = &str[0]; patch.display.SetCursor(0,0); - str = "Daisy Template"; + str = "Cascade"; patch.display.WriteString(cstr, Font_7x10, true); patch.display.Update();