修改了Web后台的部分界面,增加了HAmqtt中的总电量传感器,后台新增mqtt上报频率设置

This commit is contained in:
OOP
2025-03-03 21:49:41 +08:00
parent e1e00b60ce
commit 9f9d4c7a56
4468 changed files with 1473046 additions and 10728 deletions

View File

@@ -0,0 +1,45 @@
/**
******************************************************************************
* @file micokit_ext_def.h
* @author Eshen Wang
* @version V1.0.0
* @date 20-May-2015
* @brief micokit extension board peripherals pin defines.
******************************************************************************
* UNPUBLISHED PROPRIETARY SOURCE CODE
* Copyright (c) 2016 MXCHIP Inc.
*
* The contents of this file may not be disclosed to third parties, copied or
* duplicated in any form, in whole or in part, without the prior written
* permission of MXCHIP Corporation.
******************************************************************************
*/
#ifndef __MICOKIT_EXT_DEF_H_
#define __MICOKIT_EXT_DEF_H_
//-------------------------- MicoKit-EXT board pin define ----------------------
#define OLED_SPI_PORT (Arduino_SPI)
#define OLED_SPI_SCK (Arduino_SCK)
#define OLED_SPI_DIN (Arduino_SI)
#define OLED_SPI_DC (Arduino_SO)
#define OLED_SPI_CS (Arduino_CS)
#define P9813_PIN_CIN (Arduino_SCL)
#define P9813_PIN_DIN (Arduino_SDA)
#define DC_MOTOR (Arduino_D9)
#define MICO_EXT_KEY1 (Arduino_D4)
#define MICO_EXT_KEY2 (Arduino_D5)
#define BME280_I2C_DEVICE (Arduino_I2C)
#define DHT11_DATA (Arduino_D8)
#define APDS9930_I2C_DEVICE (Arduino_I2C)
#define LIGHT_SENSOR_ADC (Arduino_A2)
#define INFARAED_REFLECTIVE_ADC (Arduino_A3)
#endif // __MICOKIT_EXT_DEF_H_