Skip to content

docs: Update the library name to include the Arduino prefix #22

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/Modulino_Buttons/Basic/Basic.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <Modulino.h>
#include <Arduino_Modulino.h>

ModulinoButtons buttons;

Expand All @@ -25,4 +25,4 @@ void loop() {
Serial.println("Button C pressed!");
}
}
}
}
4 changes: 2 additions & 2 deletions examples/Modulino_Buzzer/Basic/Basic.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <Modulino.h>
#include <Arduino_Modulino.h>

ModulinoBuzzer buzzer;

Expand All @@ -17,4 +17,4 @@ void loop(){
buzzer.tone(0, duration);
delay(1000);

}
}
4 changes: 2 additions & 2 deletions examples/Modulino_Buzzer/Simple_melody/Simple_melody.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <Modulino.h>
#include <Arduino_Modulino.h>

ModulinoBuzzer buzzer;

Expand All @@ -18,4 +18,4 @@ void loop() {
delay(250);

}
}
}
4 changes: 2 additions & 2 deletions examples/Modulino_Knob/Basic/Basic.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <Modulino.h>
#include <Arduino_Modulino.h>

ModulinoKnob knob;

Expand All @@ -19,4 +19,4 @@ void loop(){
Serial.println("Clicked!");
}

}
}
4 changes: 2 additions & 2 deletions examples/Modulino_Pixels/Basic/Basic.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <Modulino.h>
#include <Arduino_Modulino.h>

ModulinoPixels leds;

Expand All @@ -15,4 +15,4 @@ void loop(){
leds.set(i, BLUE, brightness);
leds.show();
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <Modulino.h>
#include <Arduino_Modulino.h>

ModulinoPixels leds;

Expand Down Expand Up @@ -29,7 +29,7 @@ void loop() {
delay(25);

}

for (int i = 0; i < 8; i++) {
setPixel(i, OFF);
delay(25);
Expand All @@ -40,4 +40,4 @@ void loop() {
void setPixel(int pixel, ModulinoColor color) {
leds.set(pixel, color, brightness);
leds.show();
}
}
4 changes: 2 additions & 2 deletions examples/Modulino_Thermo/Basic/Basic.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <Modulino.h>
#include <Arduino_Modulino.h>

// Create object instance
ModulinoThermo thermo;
Expand Down Expand Up @@ -28,4 +28,4 @@ void loop(){
Serial.print("Humidity (rH) is: ");
Serial.println(humidity);

}
}
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name=Modulino
name=Arduino_Modulino
version=0.4.2
author=Arduino
maintainer=Arduino <info@arduino.cc>
Expand All @@ -7,5 +7,5 @@ paragraph=
category=Communication
url=https://github.com/arduino-libraries/Modulino
architectures=*
includes=Modulino.h
includes=Arduino_Modulino.h
depends=STM32duino VL53L4CD,STM32duino VL53L4ED,Arduino_LSM6DSOX,Arduino_LPS22HB,Arduino_HS300x,ArduinoGraphics
1 change: 1 addition & 0 deletions src/Arduino_Modulino.h
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "Modulino.h"