You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/readme.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ The **Modulino** library supports the following hardware modules:
25
25
To initialize the **Modulino** library, include the header file and call the `begin()` method. This will set up the I2C communication and prepare the library for use with the modules.
26
26
27
27
```cpp
28
-
#include<Modulino.h>
28
+
#include<Arduino_Modulino.h>
29
29
Modulino.begin(); // Initialize the Modulino library
30
30
```
31
31
@@ -124,7 +124,7 @@ Here’s an example of how to use some Modulino in a program:
124
124
// This sketch demonstrates how to use the Modulino library to control buttons, LEDs, and a buzzer.
125
125
// It listens for a button press (Button A), turns on the LED 0, and plays a sound through the buzzer when pressed.
126
126
127
-
#include<Modulino.h>
127
+
#include<Arduino_Modulino.h>
128
128
129
129
ModulinoButtons buttons; // Declare a Buttons Modulino
0 commit comments