Skip to content

renamed to Arduino_NineAxesMotion #13

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

Merged
merged 2 commits into from
May 12, 2021
Merged
Show file tree
Hide file tree
Changes from all 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
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.