add 3rd ac variant

This commit is contained in:
Siwat Sirichai 2024-05-02 21:32:22 +07:00
parent 0a0c8fe2aa
commit ec5c41561b
2 changed files with 4 additions and 3 deletions

View File

@ -5,7 +5,7 @@
* Variants *
***********************************************/
// @note You can use -D flag to define the variant and comment out the line below
#define AC_TYPE AC_TYPE_CEILING
#define AC_TYPE AC_TYPE_DUCTED_VARIANT_2
/***********************************************
* Pin Definitions *
@ -31,7 +31,7 @@
// @note The infrared codes are defined in ir_codes.hpp and ir_codes.cpp
// Air Conditioner Type for First and Second Year Classrooms
// Air Conditioner Type for First and Second3 Year Classrooms
#if AC_TYPE == AC_TYPE_DUCTED
#define AC_MIN_TEMP 15
#define AC_MAX_TEMP 30

View File

@ -1,4 +1,5 @@
#pragma once
#define AC_TYPE_DUCTED 0
#define AC_TYPE_CEILING 1
#define AC_TYPE_CEILING 1
#define AC_TYPE_DUCTED_VARIANT_2 1