Skip to content
This repository was archived by the owner on May 26, 2024. It is now read-only.

Commit 6f3277a

Browse files
committed
Align library header file name with library name.
1 parent 11f7e43 commit 6f3277a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This library works for
2121

2222
## Example
2323
```C++
24-
#include <ArduinoSensor.hpp>
24+
#include <107-Arduino-Sensor.hpp>
2525
/* ... */
2626
class DummyPressureSensor : public drone::PressureSensorBase
2727
{

examples/DummyPressureSensor/DummyPressureSensor.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* INCLUDE
88
**************************************************************************************/
99

10-
#include <ArduinoSensor.hpp>
10+
#include <107-Arduino-Sensor.hpp>
1111

1212
/**************************************************************************************
1313
* CLASS DECLARATION

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ paragraph=
77
category=Sensors
88
url=https://github.com/107-systems/107-Arduino-Sensor
99
architectures=samd,mbed,mbed_nano,mbed_portenta,mbed_edge,esp32,rp2040
10-
includes=ArduinoSensor.hpp
10+
includes=107-Arduino-Sensor.hpp
1111
depends=107-Arduino-BoostUnits
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
* Contributors: https://github.com/107-systems/107-Arduino-Sensor/graphs/contributors.
66
*/
77

8-
#ifndef ARDUINO_SENSOR_HPP_
9-
#define ARDUINO_SENSOR_HPP_
8+
#ifndef _107_ARDUINO_SENSOR_HPP_
9+
#define _107_ARDUINO_SENSOR_HPP_
1010

1111
/**************************************************************************************
1212
* INCLUDE
@@ -115,4 +115,4 @@ typedef ArduinoSensorBase<unit::Pressure> PressureSensorBase;
115115

116116
} /* drone */
117117

118-
#endif /* ARDUINO_SENSOR_HPP_ */
118+
#endif /* _107_ARDUINO_SENSOR_HPP_ */

0 commit comments

Comments
 (0)