From 37225e6a4e1af0b278f14f173e6b24d9a2de2bad Mon Sep 17 00:00:00 2001 From: ElectronicsArchiver <85485984+ElectronicsArchiver@users.noreply.github.com> Date: Thu, 7 Apr 2022 11:23:42 -0400 Subject: [PATCH] Moved Setup Into Docs Folder --- Documentation/Setup.md | 12 ++++++++++++ README.md | 11 ----------- 2 files changed, 12 insertions(+), 11 deletions(-) create mode 100644 Documentation/Setup.md diff --git a/Documentation/Setup.md b/Documentation/Setup.md new file mode 100644 index 0000000..b5f0a12 --- /dev/null +++ b/Documentation/Setup.md @@ -0,0 +1,12 @@ +## Setup +1. In the Arduino IDE Boards Manager, [install support for the ESP32][ESP32]. + * Arduino > Preferences > Additional Board Manager URLs + * ```https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json``` +2. Install this library (search for **Watchy** in the library manager), and any other dependencies when prompted +3. Check out the examples under ```Examples``` -> ```Watchy``` +4. Compile & Upload with these board settings: + * Board: "ESP32 Dev Module" + * Partition Scheme: "Minimal SPIFFS" + * All Other Settings: leave to default + +You may also have to install the [CP2104 USB to Serial drivers][Drivers] if the port is not automatically detected. \ No newline at end of file diff --git a/README.md b/README.md index fa05a77..297ac50 100644 --- a/README.md +++ b/README.md @@ -11,18 +11,7 @@ ![Preview] -## Setup -1. In the Arduino IDE Boards Manager, [install support for the ESP32][ESP32]. - * Arduino > Preferences > Additional Board Manager URLs - * ```https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json``` -2. Install this library (search for **Watchy** in the library manager), and any other dependencies when prompted -3. Check out the examples under ```Examples``` -> ```Watchy``` -4. Compile & Upload with these board settings: - * Board: "ESP32 Dev Module" - * Partition Scheme: "Minimal SPIFFS" - * All Other Settings: leave to default -You may also have to install the [CP2104 USB to Serial drivers][Drivers] if the port is not automatically detected. ### Have Fun! :)