Skip to content

Commit

Permalink
Merge pull request #13 from arduino-libraries/renaming
Browse files Browse the repository at this point in the history
renamed to Arduino_NineAxesMotion
  • Loading branch information
marqdevx authored May 12, 2021
2 parents ac87668 + 5ea545b commit ed87ec2
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Copyright (C) 2011 - 2014 Bosch Sensortec GmbH

NAxisMotion Library
Arduino_NAxisMotion Library
Date: 2014/09/12
Usage:Library and example code for the BNO055

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[![Spell Check status](https://github.com/arduino-libraries/NineAxesMotion/actions/workflows/spell-check.yml/badge.svg)](https://github.com/arduino-libraries/NineAxesMotion/actions/workflows/spell-check.yml)

-----------
The NineAxesMotion.cpp and NineAxesMotion.h files are C++ wrapper codes for the
The Arduino_NineAxesMotion.cpp and Arduino_NineAxesMotion.h files are C++ wrapper codes for the
BNO055.c and BNO055.h Sensor API. The wrapper code has been designed to
abstract the Sensor API and also to give an idea on how to use the
advanced features in the Sensor API. Apart from that it acts a bridge
Expand Down
2 changes: 1 addition & 1 deletion examples/Accelerometer/Accelerometer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* patent rights of the copyright holder.
*/

#include "NineAxesMotion.h" //Contains the bridge code between the API and the Arduino Environment
#include "Arduino_NineAxesMotion.h" //Contains the bridge code between the API and the Arduino Environment
#include <Wire.h>

NineAxesMotion mySensor; //Object that for the sensor
Expand Down
2 changes: 1 addition & 1 deletion examples/BareMinimum/BareMinimum.ino
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* patent rights of the copyright holder.
*/

#include "NineAxesMotion.h" //Contains the bridge code between the API and the Arduino Environment
#include "Arduino_NineAxesMotion.h" //Contains the bridge code between the API and the Arduino Environment
#include <Wire.h>

NineAxesMotion mySensor; //Object that for the sensor
Expand Down
2 changes: 1 addition & 1 deletion examples/Euler/Euler.ino
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* patent rights of the copyright holder.
*/

#include "NineAxesMotion.h" //Contains the bridge code between the API and the Arduino Environment
#include "Arduino_NineAxesMotion.h" //Contains the bridge code between the API and the Arduino Environment
#include <Wire.h>

NineAxesMotion mySensor; //Object that for the sensor
Expand Down
2 changes: 1 addition & 1 deletion examples/Motion/Motion.ino
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
patent rights of the copyright holder.
*/

#include "NineAxesMotion.h" //Contains the bridge code between the API and the Arduino Environment
#include "Arduino_NineAxesMotion.h" //Contains the bridge code between the API and the Arduino Environment
#include <Wire.h>

NineAxesMotion mySensor; //Object that for the sensor
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name=NineAxesMotion
name=Arduino_NineAxesMotion
version=1.1.1
author=Bosch Sensortec GmbH
maintainer=Arduino <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/NineAxesMotion.cpp → src/Arduino_NineAxesMotion.cpp
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
* No license is granted by implication or otherwise under any patent or
* patent rights of the copyright holder.
*/
#include "NineAxesMotion.h"
#include "Arduino_NineAxesMotion.h"
//Function Definitions
/*******************************************************************************************
*Description: Constructor of the class with the default initialization
Expand Down
File renamed without changes.

0 comments on commit ed87ec2

Please sign in to comment.