diff --git a/examples/EffectList/EffectList.ino b/examples/EffectList/EffectList.ino index f710e83..e424906 100644 --- a/examples/EffectList/EffectList.ino +++ b/examples/EffectList/EffectList.ino @@ -5,7 +5,6 @@ bool presetRequested = false; void setup() { - //note that this won't work on a Nano, it uses Serial for MIDI Serial.begin(9600); while (!Serial); diff --git a/examples/FineGrainedCallbacks/FineGrainedCallbacks.ino b/examples/FineGrainedCallbacks/FineGrainedCallbacks.ino index 288c0f0..959987d 100644 --- a/examples/FineGrainedCallbacks/FineGrainedCallbacks.ino +++ b/examples/FineGrainedCallbacks/FineGrainedCallbacks.ino @@ -30,7 +30,7 @@ void onSceneName(SceneNumber number, const char *name, const byte length) { Serial.println(name); } -//NOTE: only rely on the effects, the reset of the preset is not guaranteed to be complete. +//only rely on the effects, the reset of the preset is not guaranteed to be complete. void onEffectsReceived(PresetNumber number, AxePreset preset) { const size_t sz = 25; diff --git a/examples/LooperStatus/LooperStatus.ino b/examples/LooperStatus/LooperStatus.ino index 078b5d2..9fdf35d 100644 --- a/examples/LooperStatus/LooperStatus.ino +++ b/examples/LooperStatus/LooperStatus.ino @@ -4,7 +4,6 @@ AxeSystem Axe; void setup() { - //note that this won't work on a Nano, it uses Serial for MIDI Serial.begin(9600); Axe.begin(Serial1); diff --git a/examples/PresetDetails/PresetDetails.ino b/examples/PresetDetails/PresetDetails.ino index d435a77..ba0c899 100644 --- a/examples/PresetDetails/PresetDetails.ino +++ b/examples/PresetDetails/PresetDetails.ino @@ -4,7 +4,6 @@ AxeSystem Axe; void setup() { - //note that this won't work on a Nano, it uses Serial for MIDI Serial.begin(9600); while (!Serial); @@ -28,7 +27,7 @@ void onPresetChange(AxePreset preset) { const size_t sz = 150; char buf[sz]; - //NOTE! Preset/scene names with % in them will not print to debug properly + //Preset/scene names with % in them will not print to debug properly //AxeSystem has notified that all requested information has arrived! Serial.println(); diff --git a/examples/Refresh/Refresh.ino b/examples/Refresh/Refresh.ino index 5ec474f..8403068 100644 --- a/examples/Refresh/Refresh.ino +++ b/examples/Refresh/Refresh.ino @@ -4,7 +4,6 @@ AxeSystem Axe; void setup() { - //note that this won't work on a Nano, it uses Serial for MIDI Serial.begin(9600); // while (!Serial); @@ -31,7 +30,7 @@ void onPresetChange(AxePreset preset) { const size_t sz = 150; char buf[sz]; - //NOTE! Preset/scene names with % in them will not print to debug properly + //Preset/scene names with % in them will not print to debug properly //AxeSystem has notified that all requested information has arrived! Serial.print("Preset number: ");