From ebfe6b5ebb21745ac43a2ad03088a43baff06b34 Mon Sep 17 00:00:00 2001 From: ergz Date: Sat, 30 Sep 2023 23:42:19 -0700 Subject: [PATCH] adds readme and renames files --- README.md | 5 +++++ index.html => basic.html | 2 +- index.js => basic.js | 0 3 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 README.md rename index.html => basic.html (94%) rename index.js => basic.js (100%) diff --git a/README.md b/README.md new file mode 100644 index 0000000..5a5b06f --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# simple-synth + +Creating a synth to learn the web-audio api. The goal is create a synth that has the features +that Fabilter's Synth One has: + diff --git a/index.html b/basic.html similarity index 94% rename from index.html rename to basic.html index 051e445..e245c0f 100644 --- a/index.html +++ b/basic.html @@ -20,6 +20,6 @@ .5 - + \ No newline at end of file diff --git a/index.js b/basic.js similarity index 100% rename from index.js rename to basic.js