Skip to content

Commit 84c14ce

Browse files
committed
update documentation: change header file reference from Modulino.h to Arduino_Modulino.h
1 parent e55c16c commit 84c14ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The **Modulino** library supports the following hardware modules:
2525
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.
2626

2727
```cpp
28-
#include <Modulino.h>
28+
#include <Arduino_Modulino.h>
2929
Modulino.begin(); // Initialize the Modulino library
3030
```
3131

@@ -124,7 +124,7 @@ Here’s an example of how to use some Modulino in a program:
124124
// This sketch demonstrates how to use the Modulino library to control buttons, LEDs, and a buzzer.
125125
// It listens for a button press (Button A), turns on the LED 0, and plays a sound through the buzzer when pressed.
126126

127-
#include <Modulino.h>
127+
#include <Arduino_Modulino.h>
128128

129129
ModulinoButtons buttons; // Declare a Buttons Modulino
130130
ModulinoPixels leds; // Declare a Pixels Modulino

0 commit comments

Comments
 (0)