Skip to content

Commit

Permalink
Fix filename case in #include directive
Browse files Browse the repository at this point in the history
Incorrect capitalization of Arduino.h in #include directive causes compilation to fail on filename case-sensitive operating systems like Linux.
  • Loading branch information
per1234 authored and Pillar1989 committed Jan 6, 2020
1 parent d50f972 commit f02a841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Seeed_VEML6070.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef _SEEED_VE_H
#define _SEEED_VE_H

#include "arduino.h"
#include "Arduino.h"
#include "Wire.h"


Expand Down

0 comments on commit f02a841

Please sign in to comment.