88 lines
2.9 KiB
C
88 lines
2.9 KiB
C
/*
|
|
* This file is part of the "bluetoothheater" distribution
|
|
* (https://gitlab.com/mrjones.id.au/bluetoothheater)
|
|
*
|
|
* Copyright (C) 2018 Ray Jones <ray@mrjones.id.au>
|
|
* Copyright (C) 2018 James Clark
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
|
|
// Place Holder Config File - User config vars and defines to be moved here
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// Configure bluetooth options
|
|
// ** Recommended to use HC-05 for now **
|
|
// If none are enabled, we'll use an abstract class that only reports
|
|
// to the debug port what would have been sent
|
|
//
|
|
#define USE_HC05_BLUETOOTH 1
|
|
#define USE_BLE_BLUETOOTH 0
|
|
#define USE_CLASSIC_BLUETOOTH 0
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// Configure WiFi options
|
|
//
|
|
// *** Presently ESP32 Bluetooth and WiFi do not co-exist well (ala don't work!) ***
|
|
// HC-05 works OK with WiFi
|
|
//
|
|
#define USE_WIFI 1
|
|
#define USE_OTA 1
|
|
#define USE_WEBSERVER 1
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// limit rate of Bluetooth delivery from enthusiastic OEM controllers
|
|
//
|
|
#define OEM_TO_BLUETOOTH_MODERATION_TIME 700
|
|
// show when we did moderate data frames to bluetooth
|
|
#define REPORT_SUPPRESSED_OEM_DATA_FRAMES 0
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// debug reporting options
|
|
//
|
|
// true: each frame of data is reported on a new lines
|
|
// false: controller, then heater response frmaes are reported on a single line (excel CSV worthy!)
|
|
//
|
|
#define TERMINATE_OEM_LINE false /* when an OEM controller exists */
|
|
#define TERMINATE_BTC_LINE false /* when an OEM controller does not exist */
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// LED monitoring
|
|
//
|
|
// 1: enable specific LED function
|
|
// 0: disable specific LED function
|
|
//
|
|
#define RX_LED 1 /* flash when receiving blue wire data */
|
|
#define BT_LED 0 /* flash when sending bluetooth data */
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// DS18B20 temperature sensing
|
|
//
|
|
#define TEMPERATURE_INTERVAL 1000
|
|
|
|
|
|
#define SUPPORT_OEM_CONTROLLER 1
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// SH1106 128x64 OLED support
|
|
//
|
|
// 0: I2C,
|
|
// 1: HW SPI
|
|
//
|
|
#define OLED_HW_SPI 0
|