mirror of
https://github.com/pimoroni/pimoroni-pico.git
synced 2025-02-12 13:05:27 +00:00
This change removes file-relative include paths and adds the project root as a global include path. * Project root added to CMakeLists.txt so that all targets can find includes * Project root added micropython.cmake so that targets used by the MicroPython build can find includes Note: pico-boilerplate projects must set this include path
9 lines
113 B
C++
9 lines
113 B
C++
#pragma once
|
|
|
|
#include "drivers/sgp30/sgp30.hpp"
|
|
|
|
namespace pimoroni {
|
|
|
|
typedef SGP30 BreakoutSGP30;
|
|
}
|