From a81380a815aa91562023e3860341783d3994fe56 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Fri, 28 Sep 2018 08:14:31 +0200 Subject: [PATCH] Update the README to show how to pull in HostOS correctly Because HostOS is a dependency of this plugin, we need that pulled in. The example sketch has that, but the README did not. Fixes #10. Signed-off-by: Gergely Nagy --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5a80591f..33592205 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,11 @@ Using the extension is as simple as including the header, registering it with ```c++ #include +#include +#include #include -KALEIDOSCOPE_INIT_PLUGINS(Unicode); +KALEIDOSCOPE_INIT_PLUGINS(HostOS, Unicode); void setup() { Kaleidoscope.setup();