Skip to content

Commit 44fe330

Browse files
committed
Rename CurieImu to CurieIMU
1 parent 6557caf commit 44fe330

File tree

15 files changed

+57
-57
lines changed

15 files changed

+57
-57
lines changed

libraries/CurieImu/examples/Accelerometer/Accelerometer.ino renamed to libraries/CurieIMU/examples/Accelerometer/Accelerometer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
Intel(R) Curie(TM) module can be used to read accelerometer data
2323
*/
2424

25-
#include "CurieImu.h"
25+
#include "CurieIMU.h"
2626

2727
void setup() {
2828
Serial.begin(9600); // initialize Serial communication

libraries/CurieImu/examples/AccelerometerOrientation/AccelerometerOrientation.ino renamed to libraries/CurieIMU/examples/AccelerometerOrientation/AccelerometerOrientation.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
and translate it to an orientation
2424
*/
2525

26-
#include "CurieImu.h"
26+
#include "CurieIMU.h"
2727

2828
int lastOrientation = - 1; // previous orientation (for comparison)
2929

libraries/CurieImu/examples/Gyro/Gyro.ino renamed to libraries/CurieIMU/examples/Gyro/Gyro.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
Intel(R) Curie(TM) module can be used to read gyroscope data
2323
*/
2424

25-
#include "CurieImu.h"
25+
#include "CurieIMU.h"
2626

2727
void setup() {
2828
Serial.begin(9600); // initialize Serial communication

libraries/CurieImu/examples/RawImuDataSerial/RawImuDataSerial.ino renamed to libraries/CurieIMU/examples/RawImuDataSerial/RawImuDataSerial.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
===============================================
3131
*/
3232

33-
#include "CurieImu.h"
33+
#include "CurieIMU.h"
3434
short int ax, ay, az; // accelerometer values
3535
short int gx, gy, gz; // gyrometer values
3636

libraries/CurieImu/examples/ShockDetect/ShockDetect.ino renamed to libraries/CurieIMU/examples/ShockDetect/ShockDetect.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
Intel(R) Curie(TM) module can be used to detect shocks or sudden movements
2323
*/
2424

25-
#include "CurieImu.h"
25+
#include "CurieIMU.h"
2626

2727
boolean blinkState = false; // state of the LED
2828

libraries/CurieImu/examples/StepCount/StepCount.ino renamed to libraries/CurieIMU/examples/StepCount/StepCount.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
Intel(R) Curie(TM) module can be used as a Step Counter (pedometer)
2323
*/
2424

25-
#include "CurieImu.h"
25+
#include "CurieIMU.h"
2626

2727
/* To get an interrupt notification for every step detected,
2828
set stepEventsEnabeled to true. Otherwise, the main loop will

libraries/CurieImu/examples/TapDetect/TapDetect.ino renamed to libraries/CurieIMU/examples/TapDetect/TapDetect.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
Intel(R) Curie(TM) module can be used to detect tap events
2323
*/
2424

25-
#include "CurieImu.h"
25+
#include "CurieIMU.h"
2626

2727
void setup() {
2828
Serial.begin(9600);

libraries/CurieImu/keywords.txt renamed to libraries/CurieIMU/keywords.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#######################################
2-
# Syntax Coloring Map For CureImu
2+
# Syntax Coloring Map For CureIMU
33
#######################################
44

55
#######################################

libraries/CurieImu/library.properties renamed to libraries/CurieIMU/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name=CurieImu
1+
name=CurieIMU
22
version=1.0
33
author=Emutex
44
maintainer=Emutex <dan@emutex.com>
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)