Skip to content

Commit

Permalink
Changed arduino.h to Arduino.h in all files for compatibility with Li…
Browse files Browse the repository at this point in the history
…nux filesystems where filenames are case sensitive. This change does not affect compilation in a Windows environment.
  • Loading branch information
fexadom committed Mar 14, 2024
1 parent d553cad commit 04ebef0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion algorithm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
*/

#include "algorithm.h"
#include "arduino.h"
#include "Arduino.h"

//#if defined(ARDUINO_AVR_UNO)
//Arduino Uno doesn't have enough SRAM to store 100 samples of IR led data and red led data in 32-bit format
Expand Down
2 changes: 1 addition & 1 deletion algorithm.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
*/
#ifndef ALGORITHM_H_
#define ALGORITHM_H_
#include <arduino.h>
#include <Arduino.h>

#define true 1
#define false 0
Expand Down
2 changes: 1 addition & 1 deletion algorithm_by_RF.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
#ifndef ALGORITHM_BY_RF_H_
#define ALGORITHM_BY_RF_H_
#include <arduino.h>
#include <Arduino.h>

/*
* Settable parameters
Expand Down
2 changes: 1 addition & 1 deletion max30102.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
#ifndef MAX30102_H_
#define MAX30102_H_

#include <arduino.h>
#include <Arduino.h>
//#define I2C_WRITE_ADDR 0xAE
//#define I2C_READ_ADDR 0xAF
#define I2C_WRITE_ADDR 0x57 // 7-bit version of the above
Expand Down

0 comments on commit 04ebef0

Please sign in to comment.