From d182b4b6560ae3baf76c13a0e74ec1b577493f10 Mon Sep 17 00:00:00 2001 From: gmarx Date: Fri, 23 Jun 2023 20:02:54 +0000 Subject: [PATCH] Adding references to Readme --- Readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index 1005ab4..ca34236 100644 --- a/Readme.md +++ b/Readme.md @@ -875,12 +875,12 @@ Finally, the debouncing methods are called in the main method of Keyboard, which #### Simple_Implementation -There are two example implementation codes, the first one (Simple_Implementation), allows for the creation of a simple user interface, with two example menus, three graphs and two modifiers. +There are two example implementation codes, the first one (Simple_Implementation), allows for the creation of a simple user interface, with two example menus, three graphs and two modifiers[^1]. The library already includes the creation of the Adafruit_SSD1306 object as display. It can be modified to match other display controllers. Adafruit_SSD1306 display(DISP_WIDTH, DISP_HEIGHT, &Wire, -1); -In the example provided, an integer variable *i* is declared to test the graphs. Furthermore, two integer variables are created to test the modifiers. +In the example provided, an integer variable *i* is declared to test the graphs. Furthermore, two integer variables are created to test the modifiers[^2]. int i = 0; int multiplier = 1;