display_config.h
Arduino/display_config.h
#ifndef DISPLAY_CONFIG_H
#define DISPLAY_CONFIG_H
// Display Configuration
// Adjust these based on your display hardware
#define DISPLAY_WIDTH 320
#define DISPLAY_HEIGHT 240
#define DISPLAY_MOSI 23
#define DISPLAY_SCLK 18
#define DISPLAY_CS 5
#define DISPLAY_DC 2
#define DISPLAY_RST 4
#define DISPLAY_BL 15
// Touch Configuration (if using touch screen)
#define TOUCH_SDA 21
#define TOUCH_SCL 22
#define TOUCH_INT 0
// I2C Configuration for MAX30102
#define I2C_SDA 21
#define I2C_SCL 22
#endif
相關文章
lv_conf.h
lv_conf.h — c source code from the Arduino learning materials (Arduino/CCIT4080_CL05_PKPD_Group2/lv_conf.h).
閱讀文章 →2.4_max30102.cpp
2.4_max30102.cpp — cpp source code from the Arduino learning materials (Arduino/CCIT4080_CL05_PKPD_Group2/src/Combination/2.4_and_max30102_test/2.4_max30102.cpp).
閱讀文章 →bluetooth.cpp
bluetooth.cpp — cpp source code from the Arduino learning materials (Arduino/CCIT4080_CL05_PKPD_Group2/src/Test_components/bluetooth_test/bluetooth.cpp).
閱讀文章 →ec11.cpp
ec11.cpp — cpp source code from the Arduino learning materials (Arduino/CCIT4080_CL05_PKPD_Group2/src/Test_components/button_test/ec11.cpp).
閱讀文章 →1.69_inch_display.cpp
1.69_inch_display.cpp — cpp source code from the Arduino learning materials (Arduino/CCIT4080_CL05_PKPD_Group2/src/Test_components/display_test/1.69_inch_display/1.69_inch_display.cpp).
閱讀文章 →2.4_inch_display.cpp
2.4_inch_display.cpp — cpp source code from the Arduino learning materials (Arduino/CCIT4080_CL05_PKPD_Group2/src/Test_components/display_test/2.4_inch_display/2.4_inch_display.cpp).
閱讀文章 →