diff --git a/libraries/breakout_encoder/breakout_encoder.hpp b/libraries/breakout_encoder/breakout_encoder.hpp index 7283a74b..e85099d8 100644 --- a/libraries/breakout_encoder/breakout_encoder.hpp +++ b/libraries/breakout_encoder/breakout_encoder.hpp @@ -1,6 +1,6 @@ #pragma once -#include "../../drivers/ioexpander/ioexpander.hpp" +#include "drivers/ioexpander/ioexpander.hpp" namespace pimoroni { diff --git a/libraries/breakout_ioexpander/breakout_ioexpander.hpp b/libraries/breakout_ioexpander/breakout_ioexpander.hpp index e6ebd0e5..e3e2ab09 100644 --- a/libraries/breakout_ioexpander/breakout_ioexpander.hpp +++ b/libraries/breakout_ioexpander/breakout_ioexpander.hpp @@ -1,6 +1,6 @@ #pragma once -#include "../../drivers/ioexpander/ioexpander.hpp" +#include "drivers/ioexpander/ioexpander.hpp" namespace pimoroni { diff --git a/libraries/breakout_mics6814/breakout_mics6814.hpp b/libraries/breakout_mics6814/breakout_mics6814.hpp index 0a0e3612..6940e5dd 100644 --- a/libraries/breakout_mics6814/breakout_mics6814.hpp +++ b/libraries/breakout_mics6814/breakout_mics6814.hpp @@ -1,6 +1,6 @@ #pragma once -#include "../../drivers/ioexpander/ioexpander.hpp" +#include "drivers/ioexpander/ioexpander.hpp" namespace pimoroni { diff --git a/libraries/breakout_msa301/breakout_msa301.hpp b/libraries/breakout_msa301/breakout_msa301.hpp index c16c34b4..54c6647c 100644 --- a/libraries/breakout_msa301/breakout_msa301.hpp +++ b/libraries/breakout_msa301/breakout_msa301.hpp @@ -1,6 +1,6 @@ #pragma once -#include "../../drivers/msa301/msa301.hpp" +#include "drivers/msa301/msa301.hpp" namespace pimoroni { diff --git a/libraries/breakout_potentiometer/breakout_potentiometer.hpp b/libraries/breakout_potentiometer/breakout_potentiometer.hpp index dad658b2..93263384 100644 --- a/libraries/breakout_potentiometer/breakout_potentiometer.hpp +++ b/libraries/breakout_potentiometer/breakout_potentiometer.hpp @@ -1,6 +1,6 @@ #pragma once -#include "../../drivers/ioexpander/ioexpander.hpp" +#include "drivers/ioexpander/ioexpander.hpp" namespace pimoroni { diff --git a/micropython/modules/breakout_encoder/breakout_encoder.cpp b/micropython/modules/breakout_encoder/breakout_encoder.cpp index e9ade1c0..0b442df0 100644 --- a/micropython/modules/breakout_encoder/breakout_encoder.cpp +++ b/micropython/modules/breakout_encoder/breakout_encoder.cpp @@ -1,4 +1,4 @@ -#include "../../../libraries/breakout_encoder/breakout_encoder.hpp" +#include "libraries/breakout_encoder/breakout_encoder.hpp" #define MP_OBJ_TO_PTR2(o, t) ((t *)(uintptr_t)(o)) diff --git a/micropython/modules/breakout_ioexpander/breakout_ioexpander.cpp b/micropython/modules/breakout_ioexpander/breakout_ioexpander.cpp index c31ed4fb..785caf58 100644 --- a/micropython/modules/breakout_ioexpander/breakout_ioexpander.cpp +++ b/micropython/modules/breakout_ioexpander/breakout_ioexpander.cpp @@ -1,4 +1,4 @@ -#include "../../../libraries/breakout_ioexpander/breakout_ioexpander.hpp" +#include "libraries/breakout_ioexpander/breakout_ioexpander.hpp" #define MP_OBJ_TO_PTR2(o, t) ((t *)(uintptr_t)(o)) diff --git a/micropython/modules/breakout_mics6814/breakout_mics6814.cpp b/micropython/modules/breakout_mics6814/breakout_mics6814.cpp index 6a744610..5b89d6b7 100644 --- a/micropython/modules/breakout_mics6814/breakout_mics6814.cpp +++ b/micropython/modules/breakout_mics6814/breakout_mics6814.cpp @@ -1,4 +1,4 @@ -#include "../../../libraries/breakout_mics6814/breakout_mics6814.hpp" +#include "libraries/breakout_mics6814/breakout_mics6814.hpp" #define MP_OBJ_TO_PTR2(o, t) ((t *)(uintptr_t)(o)) diff --git a/micropython/modules/breakout_msa301/breakout_msa301.cpp b/micropython/modules/breakout_msa301/breakout_msa301.cpp index 17f91cf7..3b07f0d3 100644 --- a/micropython/modules/breakout_msa301/breakout_msa301.cpp +++ b/micropython/modules/breakout_msa301/breakout_msa301.cpp @@ -1,4 +1,4 @@ -#include "../../../libraries/breakout_msa301/breakout_msa301.hpp" +#include "libraries/breakout_msa301/breakout_msa301.hpp" #define MP_OBJ_TO_PTR2(o, t) ((t *)(uintptr_t)(o)) diff --git a/micropython/modules/breakout_potentiometer/breakout_potentiometer.cpp b/micropython/modules/breakout_potentiometer/breakout_potentiometer.cpp index fcae6661..d505b846 100644 --- a/micropython/modules/breakout_potentiometer/breakout_potentiometer.cpp +++ b/micropython/modules/breakout_potentiometer/breakout_potentiometer.cpp @@ -1,4 +1,4 @@ -#include "../../../libraries/breakout_potentiometer/breakout_potentiometer.hpp" +#include "libraries/breakout_potentiometer/breakout_potentiometer.hpp" #define MP_OBJ_TO_PTR2(o, t) ((t *)(uintptr_t)(o))