Try using <Arduino.h> everywhere

This commit is contained in:
Scott Lahteine
2017-11-19 13:57:07 -06:00
parent c0000a0cdc
commit 550f1025f0
7 changed files with 7 additions and 7 deletions

View File

@ -28,7 +28,7 @@
#ifndef __BLINKM_H__
#define __BLINKM_H__
#include "Arduino.h"
#include <Arduino.h>
#include <Wire.h>
void blinkm_set_led_color(const uint8_t r, const uint8_t g, const uint8_t b);

View File

@ -28,7 +28,7 @@
#ifndef __PCA9632_H__
#define __PCA9632_H__
#include "Arduino.h"
#include <Arduino.h>
#include <Wire.h>
void pca9632_set_led_color(const byte r, const byte g, const byte b);