Skip to content

Commit b45d451

Browse files
Changed library name in examples (#2525)
1 parent 77e02d9 commit b45d451

File tree

8 files changed

+10
-10
lines changed
  • content/hardware
    • 03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier
    • 11.accessories/modulino-nodes

8 files changed

+10
-10
lines changed

content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/content.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ The Teamometer demonstrates how different Modulino sensor modules can work toget
166166

167167
**Code Example:**
168168
```arduino
169-
#include <Arduino_Modulino.h>
169+
#include <Modulino.h>
170170
171171
// Create object instances
172172
ModulinoThermo thermo;
@@ -352,7 +352,7 @@ The Motion Tracker demonstrates how the Nano Connector Carrier can integrate wit
352352
* Records movement data from a Modulino Movement sensor to an SD card.
353353
* Press Button A to start/stop recording.
354354
*/
355-
#include "Arduino_Modulino.h"
355+
#include "Modulino.h"
356356
#include <SD.h>
357357
358358
// Create objects for the modules

content/hardware/11.accessories/modulino-nodes/modulino-buttons/tutorials/how-buttons-ardu/how-to-buttons-ardu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ For the **Buttons** module, there are two key functions:
187187
Here is an example sketch demonstrating how to use these functions to detect button presses:
188188

189189
```arduino
190-
#include <Arduino_Modulino.h>
190+
#include <Modulino.h>
191191
192192
// Create object instance
193193
ModulinoButtons buttons;
@@ -233,7 +233,7 @@ For the **Button Events** functionality, there are several key functions:
233233
Here is an example sketch demonstrating how to implement button event detection:
234234

235235
```arduino
236-
#include "Arduino_Modulino.h"
236+
#include "Modulino.h"
237237
#include "Button2.h"
238238
239239
Button2 button;

content/hardware/11.accessories/modulino-nodes/modulino-buzzer/tutorials/how-buzzer-ardu/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ Getting sound feedback from the buzzer is fairly simple using the ```Modulino```
183183
Here is an example sketch of how to implement this function to control the buzzer:
184184

185185
```arduino
186-
#include <Arduino_Modulino.h>
186+
#include <Modulino.h>
187187
188188
ModulinoBuzzer buzzer;
189189

content/hardware/11.accessories/modulino-nodes/modulino-distance/tutorials/how-distance-ardu/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Getting data from the sensor is fairly simple using the ```Modulino``` library.
174174
Here is an example sketch of how to implement these functions to acquire data and show it using the serial monitor:
175175

176176
```arduino
177-
#include "Arduino_Modulino.h"
177+
#include "Modulino.h"
178178
179179
// Create object instance
180180
ModulinoDistance distance;

content/hardware/11.accessories/modulino-nodes/modulino-knob/tutorials/how-knob-ardu/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ For the **Knob** there are two important functions:
189189
Here is an example sketch of how to implement these functions to acquire data:
190190

191191
```arduino
192-
#include <Arduino_Modulino.h>
192+
#include <Modulino.h>
193193
194194
ModulinoKnob knob;
195195

content/hardware/11.accessories/modulino-nodes/modulino-movement/tutorials/how-movement-ardu/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ Getting data from the sensor is fairly simple using the ```Modulino``` library.
231231
Here is an example sketch of how to implement these functions to acquire data and show it using the serial monitor:
232232

233233
```arduino
234-
#include "Arduino_Modulino.h"
234+
#include "Modulino.h"
235235
236236
// Create a ModulinoMovement
237237
ModulinoMovement movement;

content/hardware/11.accessories/modulino-nodes/modulino-pixels/tutorials/how-pixels-ardu/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ For the **Pixels**, there are two important functions:
192192
Here is an example of how to implement these functions to control the LEDs:
193193

194194
```arduino
195-
#include <Arduino_Modulino.h>
195+
#include <Modulino.h>
196196
197197
ModulinoPixels leds;
198198

content/hardware/11.accessories/modulino-nodes/modulino-thermo/tutorials/how-thermo-ardu/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ Getting data from the sensor is fairly simple using the ```Modulino``` library.
160160
Here is an example sketch of how to implement these functions to acquire data and show it using the serial monitor:
161161

162162
```arduino
163-
#include <Arduino_Modulino.h>
163+
#include <Modulino.h>
164164
165165
// Create object instance
166166
ModulinoThermo thermo;

0 commit comments

Comments
 (0)