Fix up 'system' includes

This commit is contained in:
Scott Lahteine
2020-04-01 23:50:08 -05:00
parent 514afddeb4
commit 62e8c2dd87
5 changed files with 6 additions and 6 deletions

View File

@ -24,8 +24,8 @@
#if BOTH(DIGIPOT_I2C, DIGIPOT_MCP4018)
#include "Stream.h"
#include "utility/twi.h"
#include <Stream.h>
#include <utility/twi.h>
#include <SlowSoftI2CMaster.h> //https://github.com/stawel/SlowSoftI2CMaster
// Settings for the I2C based DIGIPOT (MCP4018) based on WT150

View File

@ -24,7 +24,7 @@
#if ENABLED(DIGIPOT_I2C) && DISABLED(DIGIPOT_MCP4018)
#include "Stream.h"
#include <Stream.h>
#include <Wire.h>
#if MB(MKS_SBASE)