From 7526e26ea7f8f19718655ddaab78a815bcb980e3 Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 10 Jul 2018 03:38:28 -0700 Subject: [PATCH] Move library to root of repository A popular library installation technique is to download the library via GitHub's Clone or download > Download ZIP and then use the Arduino IDE's Sketch > Include Library > Add .ZIP Library on the downloaded file. This requires the library to be in the root of the repository, not in a subfolder. If the library is not in the root of the repository this installation technique fails: Specified folder/zip file does not contain a valid library This is the standard repository structure used in all official Arduino libraries: https://github.com/arduino-libraries This move is also required if you wanted to add your library to the Arduino Library Manager index, which provides an even easier installation option. --- ARL/command/Command.h => Command.h | 0 .../DynamicSequentialCommand.cpp => DynamicSequentialCommand.cpp | 0 .../DynamicSequentialCommand.h => DynamicSequentialCommand.h | 0 ARL/command/ParallelCommand.cpp => ParallelCommand.cpp | 0 ARL/command/ParallelCommand.h => ParallelCommand.h | 0 ARL/command/PeriodicCommand.cpp => PeriodicCommand.cpp | 0 ARL/command/PeriodicCommand.h => PeriodicCommand.h | 0 ARL/command/SequentialCommand.cpp => SequentialCommand.cpp | 0 ARL/command/SequentialCommand.h => SequentialCommand.h | 0 .../SingleRunCommandRunner.cpp => SingleRunCommandRunner.cpp | 0 ARL/command/SingleRunCommandRunner.h => SingleRunCommandRunner.h | 0 ARL/command/WaitCommand.cpp => WaitCommand.cpp | 0 ARL/command/WaitCommand.h => WaitCommand.h | 0 13 files changed, 0 insertions(+), 0 deletions(-) rename ARL/command/Command.h => Command.h (100%) rename ARL/command/DynamicSequentialCommand.cpp => DynamicSequentialCommand.cpp (100%) rename ARL/command/DynamicSequentialCommand.h => DynamicSequentialCommand.h (100%) rename ARL/command/ParallelCommand.cpp => ParallelCommand.cpp (100%) rename ARL/command/ParallelCommand.h => ParallelCommand.h (100%) rename ARL/command/PeriodicCommand.cpp => PeriodicCommand.cpp (100%) rename ARL/command/PeriodicCommand.h => PeriodicCommand.h (100%) rename ARL/command/SequentialCommand.cpp => SequentialCommand.cpp (100%) rename ARL/command/SequentialCommand.h => SequentialCommand.h (100%) rename ARL/command/SingleRunCommandRunner.cpp => SingleRunCommandRunner.cpp (100%) rename ARL/command/SingleRunCommandRunner.h => SingleRunCommandRunner.h (100%) rename ARL/command/WaitCommand.cpp => WaitCommand.cpp (100%) rename ARL/command/WaitCommand.h => WaitCommand.h (100%) diff --git a/ARL/command/Command.h b/Command.h similarity index 100% rename from ARL/command/Command.h rename to Command.h diff --git a/ARL/command/DynamicSequentialCommand.cpp b/DynamicSequentialCommand.cpp similarity index 100% rename from ARL/command/DynamicSequentialCommand.cpp rename to DynamicSequentialCommand.cpp diff --git a/ARL/command/DynamicSequentialCommand.h b/DynamicSequentialCommand.h similarity index 100% rename from ARL/command/DynamicSequentialCommand.h rename to DynamicSequentialCommand.h diff --git a/ARL/command/ParallelCommand.cpp b/ParallelCommand.cpp similarity index 100% rename from ARL/command/ParallelCommand.cpp rename to ParallelCommand.cpp diff --git a/ARL/command/ParallelCommand.h b/ParallelCommand.h similarity index 100% rename from ARL/command/ParallelCommand.h rename to ParallelCommand.h diff --git a/ARL/command/PeriodicCommand.cpp b/PeriodicCommand.cpp similarity index 100% rename from ARL/command/PeriodicCommand.cpp rename to PeriodicCommand.cpp diff --git a/ARL/command/PeriodicCommand.h b/PeriodicCommand.h similarity index 100% rename from ARL/command/PeriodicCommand.h rename to PeriodicCommand.h diff --git a/ARL/command/SequentialCommand.cpp b/SequentialCommand.cpp similarity index 100% rename from ARL/command/SequentialCommand.cpp rename to SequentialCommand.cpp diff --git a/ARL/command/SequentialCommand.h b/SequentialCommand.h similarity index 100% rename from ARL/command/SequentialCommand.h rename to SequentialCommand.h diff --git a/ARL/command/SingleRunCommandRunner.cpp b/SingleRunCommandRunner.cpp similarity index 100% rename from ARL/command/SingleRunCommandRunner.cpp rename to SingleRunCommandRunner.cpp diff --git a/ARL/command/SingleRunCommandRunner.h b/SingleRunCommandRunner.h similarity index 100% rename from ARL/command/SingleRunCommandRunner.h rename to SingleRunCommandRunner.h diff --git a/ARL/command/WaitCommand.cpp b/WaitCommand.cpp similarity index 100% rename from ARL/command/WaitCommand.cpp rename to WaitCommand.cpp diff --git a/ARL/command/WaitCommand.h b/WaitCommand.h similarity index 100% rename from ARL/command/WaitCommand.h rename to WaitCommand.h