Skip to content

Commit fec5cda

Browse files
authored
Driver for the mlx90640 thermal imaging camera (#578)
1 parent 0eda7c5 commit fec5cda

File tree

4 files changed

+1037
-0
lines changed

4 files changed

+1037
-0
lines changed

drivers/framework.zig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ pub const led = struct {
4545
pub const sensor = struct {
4646
pub const TMP117 = @import("sensor/TMP117.zig").TMP117;
4747
pub const ICM_20948 = @import("sensor/ICM-20948.zig").ICM_20948;
48+
pub const MLX90640 = @import("sensor/MLX90640.zig").MLX90640;
4849
};
4950

5051
pub const stepper = struct {
@@ -213,6 +214,7 @@ test {
213214

214215
_ = sensor.TMP117;
215216
_ = sensor.ICM_20948;
217+
_ = sensor.MLX90640;
216218

217219
_ = @import("stepper/common.zig");
218220
_ = stepper.A4988;

0 commit comments

Comments
 (0)