#654 - Partial work for the LED/Speaker.

Framework is done. Just need to blink a few things and update protobufs.
This commit is contained in:
Jm
2021-01-27 19:18:16 -08:00
parent ad322476d2
commit eff0c1fe89
3 changed files with 154 additions and 2 deletions

View File

@@ -1,3 +1,4 @@
#include "plugins/ExternalNotificationPlugin.h"
#include "plugins/NodeInfoPlugin.h"
#include "plugins/PositionPlugin.h"
#include "plugins/RemoteHardwarePlugin.h"
@@ -23,7 +24,7 @@ void setupPlugins()
#ifndef NO_ESP32
// Only run on an esp32 based device.
new SerialPlugin(); // Maintained by MC Hamster (Jm Casler) jm@casler.org
new SerialPlugin(); // Maintained by MC Hamster (Jm Casler) jm@casler.org
new ExternalNotificationPlugin(); // Maintained by MC Hamster (Jm Casler) jm@casler.org
#endif
}