We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0eda7c5 commit fec5cdaCopy full SHA for fec5cda
drivers/framework.zig
@@ -45,6 +45,7 @@ pub const led = struct {
45
pub const sensor = struct {
46
pub const TMP117 = @import("sensor/TMP117.zig").TMP117;
47
pub const ICM_20948 = @import("sensor/ICM-20948.zig").ICM_20948;
48
+ pub const MLX90640 = @import("sensor/MLX90640.zig").MLX90640;
49
};
50
51
pub const stepper = struct {
@@ -213,6 +214,7 @@ test {
213
214
215
_ = sensor.TMP117;
216
_ = sensor.ICM_20948;
217
+ _ = sensor.MLX90640;
218
219
_ = @import("stepper/common.zig");
220
_ = stepper.A4988;
0 commit comments