2017-11-07 14:57:24 +00:00
|
|
|
/*
|
2017-11-19 17:02:03 +00:00
|
|
|
xsns_12_ads1115_ada.ino - ADS1115 A/D Converter support for Sonoff-Tasmota
|
2017-11-07 14:57:24 +00:00
|
|
|
|
2019-01-01 12:55:01 +00:00
|
|
|
Copyright (C) 2019 Theo Arends
|
2017-11-07 14:57:24 +00:00
|
|
|
|
|
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef USE_I2C
|
|
|
|
#ifdef USE_ADS1115
|
|
|
|
/*********************************************************************************************\
|
|
|
|
* ADS1115 - 4 channel 16BIT A/D converter
|
|
|
|
*
|
2017-11-19 17:02:03 +00:00
|
|
|
* Required library: none but based on Adafruit Industries ADS1015 library
|
2017-11-07 14:57:24 +00:00
|
|
|
*
|
2017-11-11 11:33:30 +00:00
|
|
|
* I2C Address: 0x48, 0x49, 0x4A or 0x4B
|
|
|
|
*
|
2017-11-07 14:57:24 +00:00
|
|
|
* The ADC input range (or gain) can be changed via the following
|
2017-11-19 17:02:03 +00:00
|
|
|
* defines, but be careful never to exceed VDD +0.3V max, or to
|
2017-11-07 14:57:24 +00:00
|
|
|
* exceed the upper and lower limits if you adjust the input range!
|
|
|
|
* Setting these values incorrectly may destroy your ADC!
|
2017-11-19 17:02:03 +00:00
|
|
|
* ADS1115
|
|
|
|
* -------
|
2017-12-03 13:06:15 +00:00
|
|
|
* ADS1115_REG_CONFIG_PGA_6_144V // 2/3x gain +/- 6.144V 1 bit = 0.1875mV (default)
|
|
|
|
* ADS1115_REG_CONFIG_PGA_4_096V // 1x gain +/- 4.096V 1 bit = 0.125mV
|
2017-12-02 11:40:33 +00:00
|
|
|
* ADS1115_REG_CONFIG_PGA_2_048V // 2x gain +/- 2.048V 1 bit = 0.0625mV
|
2017-11-19 17:02:03 +00:00
|
|
|
* ADS1115_REG_CONFIG_PGA_1_024V // 4x gain +/- 1.024V 1 bit = 0.03125mV
|
|
|
|
* ADS1115_REG_CONFIG_PGA_0_512V // 8x gain +/- 0.512V 1 bit = 0.015625mV
|
|
|
|
* ADS1115_REG_CONFIG_PGA_0_256V // 16x gain +/- 0.256V 1 bit = 0.0078125mV
|
2017-11-07 14:57:24 +00:00
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2018-11-06 16:33:51 +00:00
|
|
|
#define XSNS_12 12
|
|
|
|
|
2017-12-02 11:40:33 +00:00
|
|
|
#define ADS1115_ADDRESS_ADDR_GND 0x48 // address pin low (GND)
|
|
|
|
#define ADS1115_ADDRESS_ADDR_VDD 0x49 // address pin high (VCC)
|
|
|
|
#define ADS1115_ADDRESS_ADDR_SDA 0x4A // address pin tied to SDA pin
|
|
|
|
#define ADS1115_ADDRESS_ADDR_SCL 0x4B // address pin tied to SCL pin
|
2017-11-07 14:57:24 +00:00
|
|
|
|
2017-12-02 11:40:33 +00:00
|
|
|
#define ADS1115_CONVERSIONDELAY (8) // CONVERSION DELAY (in mS)
|
2017-11-19 17:02:03 +00:00
|
|
|
|
|
|
|
/*======================================================================
|
|
|
|
POINTER REGISTER
|
|
|
|
-----------------------------------------------------------------------*/
|
|
|
|
#define ADS1115_REG_POINTER_MASK (0x03)
|
|
|
|
#define ADS1115_REG_POINTER_CONVERT (0x00)
|
|
|
|
#define ADS1115_REG_POINTER_CONFIG (0x01)
|
|
|
|
#define ADS1115_REG_POINTER_LOWTHRESH (0x02)
|
|
|
|
#define ADS1115_REG_POINTER_HITHRESH (0x03)
|
|
|
|
|
|
|
|
/*======================================================================
|
|
|
|
CONFIG REGISTER
|
|
|
|
-----------------------------------------------------------------------*/
|
|
|
|
#define ADS1115_REG_CONFIG_OS_MASK (0x8000)
|
|
|
|
#define ADS1115_REG_CONFIG_OS_SINGLE (0x8000) // Write: Set to start a single-conversion
|
|
|
|
#define ADS1115_REG_CONFIG_OS_BUSY (0x0000) // Read: Bit = 0 when conversion is in progress
|
|
|
|
#define ADS1115_REG_CONFIG_OS_NOTBUSY (0x8000) // Read: Bit = 1 when device is not performing a conversion
|
|
|
|
|
|
|
|
#define ADS1115_REG_CONFIG_MUX_MASK (0x7000)
|
|
|
|
#define ADS1115_REG_CONFIG_MUX_DIFF_0_1 (0x0000) // Differential P = AIN0, N = AIN1 (default)
|
|
|
|
#define ADS1115_REG_CONFIG_MUX_DIFF_0_3 (0x1000) // Differential P = AIN0, N = AIN3
|
|
|
|
#define ADS1115_REG_CONFIG_MUX_DIFF_1_3 (0x2000) // Differential P = AIN1, N = AIN3
|
|
|
|
#define ADS1115_REG_CONFIG_MUX_DIFF_2_3 (0x3000) // Differential P = AIN2, N = AIN3
|
|
|
|
#define ADS1115_REG_CONFIG_MUX_SINGLE_0 (0x4000) // Single-ended AIN0
|
|
|
|
#define ADS1115_REG_CONFIG_MUX_SINGLE_1 (0x5000) // Single-ended AIN1
|
|
|
|
#define ADS1115_REG_CONFIG_MUX_SINGLE_2 (0x6000) // Single-ended AIN2
|
|
|
|
#define ADS1115_REG_CONFIG_MUX_SINGLE_3 (0x7000) // Single-ended AIN3
|
|
|
|
|
|
|
|
#define ADS1115_REG_CONFIG_PGA_MASK (0x0E00)
|
2017-12-03 13:06:15 +00:00
|
|
|
#define ADS1115_REG_CONFIG_PGA_6_144V (0x0000) // +/-6.144V range = Gain 2/3 (default)
|
2017-11-19 17:02:03 +00:00
|
|
|
#define ADS1115_REG_CONFIG_PGA_4_096V (0x0200) // +/-4.096V range = Gain 1
|
2017-12-03 13:06:15 +00:00
|
|
|
#define ADS1115_REG_CONFIG_PGA_2_048V (0x0400) // +/-2.048V range = Gain 2
|
2017-11-19 17:02:03 +00:00
|
|
|
#define ADS1115_REG_CONFIG_PGA_1_024V (0x0600) // +/-1.024V range = Gain 4
|
|
|
|
#define ADS1115_REG_CONFIG_PGA_0_512V (0x0800) // +/-0.512V range = Gain 8
|
|
|
|
#define ADS1115_REG_CONFIG_PGA_0_256V (0x0A00) // +/-0.256V range = Gain 16
|
|
|
|
|
|
|
|
#define ADS1115_REG_CONFIG_MODE_MASK (0x0100)
|
|
|
|
#define ADS1115_REG_CONFIG_MODE_CONTIN (0x0000) // Continuous conversion mode
|
|
|
|
#define ADS1115_REG_CONFIG_MODE_SINGLE (0x0100) // Power-down single-shot mode (default)
|
|
|
|
|
|
|
|
#define ADS1115_REG_CONFIG_DR_MASK (0x00E0)
|
|
|
|
#define ADS1115_REG_CONFIG_DR_128SPS (0x0000) // 128 samples per second
|
|
|
|
#define ADS1115_REG_CONFIG_DR_250SPS (0x0020) // 250 samples per second
|
|
|
|
#define ADS1115_REG_CONFIG_DR_490SPS (0x0040) // 490 samples per second
|
|
|
|
#define ADS1115_REG_CONFIG_DR_920SPS (0x0060) // 920 samples per second
|
|
|
|
#define ADS1115_REG_CONFIG_DR_1600SPS (0x0080) // 1600 samples per second (default)
|
|
|
|
#define ADS1115_REG_CONFIG_DR_2400SPS (0x00A0) // 2400 samples per second
|
|
|
|
#define ADS1115_REG_CONFIG_DR_3300SPS (0x00C0) // 3300 samples per second
|
|
|
|
#define ADS1115_REG_CONFIG_DR_6000SPS (0x00E0) // 6000 samples per second
|
|
|
|
|
|
|
|
#define ADS1115_REG_CONFIG_CMODE_MASK (0x0010)
|
|
|
|
#define ADS1115_REG_CONFIG_CMODE_TRAD (0x0000) // Traditional comparator with hysteresis (default)
|
|
|
|
#define ADS1115_REG_CONFIG_CMODE_WINDOW (0x0010) // Window comparator
|
|
|
|
|
|
|
|
#define ADS1115_REG_CONFIG_CPOL_MASK (0x0008)
|
|
|
|
#define ADS1115_REG_CONFIG_CPOL_ACTVLOW (0x0000) // ALERT/RDY pin is low when active (default)
|
|
|
|
#define ADS1115_REG_CONFIG_CPOL_ACTVHI (0x0008) // ALERT/RDY pin is high when active
|
|
|
|
|
|
|
|
#define ADS1115_REG_CONFIG_CLAT_MASK (0x0004) // Determines if ALERT/RDY pin latches once asserted
|
|
|
|
#define ADS1115_REG_CONFIG_CLAT_NONLAT (0x0000) // Non-latching comparator (default)
|
|
|
|
#define ADS1115_REG_CONFIG_CLAT_LATCH (0x0004) // Latching comparator
|
|
|
|
|
|
|
|
#define ADS1115_REG_CONFIG_CQUE_MASK (0x0003)
|
|
|
|
#define ADS1115_REG_CONFIG_CQUE_1CONV (0x0000) // Assert ALERT/RDY after one conversions
|
|
|
|
#define ADS1115_REG_CONFIG_CQUE_2CONV (0x0001) // Assert ALERT/RDY after two conversions
|
|
|
|
#define ADS1115_REG_CONFIG_CQUE_4CONV (0x0002) // Assert ALERT/RDY after four conversions
|
|
|
|
#define ADS1115_REG_CONFIG_CQUE_NONE (0x0003) // Disable the comparator and put ALERT/RDY in high state (default)
|
2017-11-07 14:57:24 +00:00
|
|
|
|
|
|
|
uint8_t ads1115_type = 0;
|
2017-11-11 11:33:30 +00:00
|
|
|
uint8_t ads1115_address;
|
2017-11-19 17:02:03 +00:00
|
|
|
uint8_t ads1115_addresses[] = { ADS1115_ADDRESS_ADDR_GND, ADS1115_ADDRESS_ADDR_VDD, ADS1115_ADDRESS_ADDR_SDA, ADS1115_ADDRESS_ADDR_SCL };
|
2019-02-01 03:13:23 +00:00
|
|
|
uint8_t ads1115_found[] = {false,false,false,false};
|
|
|
|
int16_t ads1115_values[4];
|
2017-11-19 17:02:03 +00:00
|
|
|
//Ads1115StartComparator(channel, ADS1115_REG_CONFIG_MODE_SINGLE);
|
|
|
|
//Ads1115StartComparator(channel, ADS1115_REG_CONFIG_MODE_CONTIN);
|
|
|
|
void Ads1115StartComparator(uint8_t channel, uint16_t mode)
|
2017-11-07 14:57:24 +00:00
|
|
|
{
|
2017-11-19 17:02:03 +00:00
|
|
|
// Start with default values
|
|
|
|
uint16_t config = mode |
|
|
|
|
ADS1115_REG_CONFIG_CQUE_NONE | // Comparator enabled and asserts on 1 match
|
|
|
|
ADS1115_REG_CONFIG_CLAT_NONLAT | // Non Latching mode
|
2017-12-03 13:06:15 +00:00
|
|
|
ADS1115_REG_CONFIG_PGA_6_144V | // ADC Input voltage range (Gain)
|
2017-11-19 17:02:03 +00:00
|
|
|
ADS1115_REG_CONFIG_CPOL_ACTVLOW | // Alert/Rdy active low (default val)
|
|
|
|
ADS1115_REG_CONFIG_CMODE_TRAD | // Traditional comparator (default val)
|
|
|
|
ADS1115_REG_CONFIG_DR_6000SPS; // 6000 samples per second
|
|
|
|
|
|
|
|
// Set single-ended input channel
|
|
|
|
config |= (ADS1115_REG_CONFIG_MUX_SINGLE_0 + (0x1000 * channel));
|
v5.9.1j - Add Dual R2, Rewrite DS18x20 and fixes
5.9.1j
* Revert changes to xsns_05_ds18x20.ino and rename to
xsns_05_ds18x20_legacy.ino still needing library OneWire and providing
legacy JSON message:
*
"DS18x20":{"DS1":{"Type":"DS18B20","Address":"284CC48E04000079","Temperature":19.5},"DS2":{"Type":"DS18B20","Address":"283AC28304000052","Temperature":19.6}}
* Add new xdrv_05_ds18x20.ino free from library OneWire and add the
following features:
* Add support for DS1822
* Add forced setting of
12-bit resolution for selected device types (#1222)
* Add read
temperature retry counter (#1215)
* Fix lost sensors by performing
sensor probe at restart only thereby removing dynamic sensor probe
(#1215)
* Fix sensor address sorting using ascending sort on sensor
type followed by sensor address
* Rewrite JSON resulting in shorter
message allowing more sensors in default firmware image:
*
"DS18B20-1":{"Id":"00000483C23A","Temperature":19.5},"DS18B20-2":{"Id":"0000048EC44C","Temperature":19.6}
* Add additional define in user_config.h to select either single sensor
(defines disabled), new multi sensor (USE_DS18X20) or legacy multi
sensor (USE_DS18X20_LEGACY)
* Add support for Sonoff Dual R2 (#1249)
*
Fix ADS1115 detection (#1258)
2017-11-27 16:46:51 +00:00
|
|
|
|
2017-11-19 17:02:03 +00:00
|
|
|
// Write config register to the ADC
|
|
|
|
I2cWrite16(ads1115_address, ADS1115_REG_POINTER_CONFIG, config);
|
|
|
|
}
|
|
|
|
|
|
|
|
int16_t Ads1115GetConversion(uint8_t channel)
|
|
|
|
{
|
|
|
|
Ads1115StartComparator(channel, ADS1115_REG_CONFIG_MODE_SINGLE);
|
|
|
|
// Wait for the conversion to complete
|
|
|
|
delay(ADS1115_CONVERSIONDELAY);
|
|
|
|
// Read the conversion results
|
|
|
|
I2cRead16(ads1115_address, ADS1115_REG_POINTER_CONVERT);
|
|
|
|
|
|
|
|
Ads1115StartComparator(channel, ADS1115_REG_CONFIG_MODE_CONTIN);
|
|
|
|
delay(ADS1115_CONVERSIONDELAY);
|
|
|
|
// Read the conversion results
|
|
|
|
uint16_t res = I2cRead16(ads1115_address, ADS1115_REG_POINTER_CONVERT);
|
|
|
|
return (int16_t)res;
|
2017-11-07 14:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/********************************************************************************************/
|
|
|
|
|
2018-11-14 13:32:09 +00:00
|
|
|
void Ads1115Detect(void)
|
2017-11-07 14:57:24 +00:00
|
|
|
{
|
v5.9.1j - Add Dual R2, Rewrite DS18x20 and fixes
5.9.1j
* Revert changes to xsns_05_ds18x20.ino and rename to
xsns_05_ds18x20_legacy.ino still needing library OneWire and providing
legacy JSON message:
*
"DS18x20":{"DS1":{"Type":"DS18B20","Address":"284CC48E04000079","Temperature":19.5},"DS2":{"Type":"DS18B20","Address":"283AC28304000052","Temperature":19.6}}
* Add new xdrv_05_ds18x20.ino free from library OneWire and add the
following features:
* Add support for DS1822
* Add forced setting of
12-bit resolution for selected device types (#1222)
* Add read
temperature retry counter (#1215)
* Fix lost sensors by performing
sensor probe at restart only thereby removing dynamic sensor probe
(#1215)
* Fix sensor address sorting using ascending sort on sensor
type followed by sensor address
* Rewrite JSON resulting in shorter
message allowing more sensors in default firmware image:
*
"DS18B20-1":{"Id":"00000483C23A","Temperature":19.5},"DS18B20-2":{"Id":"0000048EC44C","Temperature":19.6}
* Add additional define in user_config.h to select either single sensor
(defines disabled), new multi sensor (USE_DS18X20) or legacy multi
sensor (USE_DS18X20_LEGACY)
* Add support for Sonoff Dual R2 (#1249)
*
Fix ADS1115 detection (#1258)
2017-11-27 16:46:51 +00:00
|
|
|
uint16_t buffer;
|
2019-01-28 13:08:33 +00:00
|
|
|
for (uint8_t i = 0; i < sizeof(ads1115_addresses); i++) {
|
2019-02-07 17:09:49 +00:00
|
|
|
if (!ads1115_found[i]) {
|
|
|
|
ads1115_address = ads1115_addresses[i];
|
|
|
|
if (I2cValidRead16(&buffer, ads1115_address, ADS1115_REG_POINTER_CONVERT) &&
|
|
|
|
I2cValidRead16(&buffer, ads1115_address, ADS1115_REG_POINTER_CONFIG)) {
|
|
|
|
Ads1115StartComparator(i, ADS1115_REG_CONFIG_MODE_CONTIN);
|
|
|
|
ads1115_type = 1;
|
|
|
|
ads1115_found[i] = 1;
|
|
|
|
snprintf_P(log_data, sizeof(log_data), S_LOG_I2C_FOUND_AT, "ADS1115", ads1115_address);
|
|
|
|
AddLog(LOG_LEVEL_DEBUG);
|
|
|
|
}
|
2017-11-07 14:57:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-07 17:09:49 +00:00
|
|
|
void Ads1115GetValues(uint8_t address)
|
|
|
|
{
|
|
|
|
uint8_t old_address = ads1115_address;
|
|
|
|
ads1115_address = address;
|
|
|
|
for (uint8_t i = 0; i < 4; i++) {
|
|
|
|
ads1115_values[i] = Ads1115GetConversion(i);
|
|
|
|
//snprintf_P(log_data, sizeof(log_data), "Logging ADS1115 %02x (%i) = %i", address, i, ads1115_values[i] );
|
|
|
|
//AddLog(LOG_LEVEL_INFO);
|
|
|
|
}
|
|
|
|
ads1115_address = old_address;
|
2019-02-01 03:13:23 +00:00
|
|
|
}
|
|
|
|
|
2019-02-07 17:09:49 +00:00
|
|
|
void Ads1115toJSON(char *comma_j)
|
|
|
|
{
|
2019-02-01 03:13:23 +00:00
|
|
|
snprintf_P(mqtt_data, sizeof(mqtt_data), PSTR("%s%s{"), mqtt_data,comma_j);
|
|
|
|
char *comma = (char*)"";
|
|
|
|
for (uint8_t i = 0; i < 4; i++) {
|
|
|
|
snprintf_P(mqtt_data, sizeof(mqtt_data), PSTR("%s%s\"A%d\":%d"), mqtt_data, comma, i, ads1115_values[i]);
|
|
|
|
comma = (char*)",";
|
2019-02-07 17:09:49 +00:00
|
|
|
}
|
2019-02-01 03:13:23 +00:00
|
|
|
snprintf_P(mqtt_data, sizeof(mqtt_data), PSTR("%s}"), mqtt_data);
|
|
|
|
}
|
|
|
|
|
2019-02-07 17:09:49 +00:00
|
|
|
void Ads1115toString(uint8_t address)
|
|
|
|
{
|
2019-02-01 03:13:23 +00:00
|
|
|
char label[15];
|
|
|
|
snprintf_P(label, sizeof(label), "ADS1115(%02x)", address);
|
|
|
|
|
|
|
|
for (uint8_t i = 0; i < 4; i++) {
|
|
|
|
snprintf_P(mqtt_data, sizeof(mqtt_data), HTTP_SNS_ANALOG, mqtt_data, label, i, ads1115_values[i]);
|
2019-02-07 17:09:49 +00:00
|
|
|
}
|
2019-02-01 03:13:23 +00:00
|
|
|
}
|
|
|
|
|
2019-01-28 13:08:33 +00:00
|
|
|
void Ads1115Show(bool json)
|
2017-11-07 14:57:24 +00:00
|
|
|
{
|
2019-02-07 17:09:49 +00:00
|
|
|
if (!ads1115_type) { return; }
|
2017-11-07 14:57:24 +00:00
|
|
|
|
2019-02-07 17:09:49 +00:00
|
|
|
if (json) {
|
2019-02-01 03:13:23 +00:00
|
|
|
snprintf_P(mqtt_data, sizeof(mqtt_data), PSTR("%s,\"ADS1115\":["), mqtt_data);
|
2019-02-07 17:09:49 +00:00
|
|
|
}
|
2017-11-07 14:57:24 +00:00
|
|
|
|
2019-02-01 03:13:23 +00:00
|
|
|
char *comma = (char*)"";
|
|
|
|
|
|
|
|
for (uint8_t t = 0; t < sizeof(ads1115_addresses); t++) {
|
2019-02-07 10:08:13 +00:00
|
|
|
//snprintf_P(log_data, sizeof(log_data), "Logging ADS1115 %02x", ads1115_addresses[t]);
|
|
|
|
//AddLog(LOG_LEVEL_INFO);
|
2019-02-01 03:13:23 +00:00
|
|
|
if (ads1115_found[t]) {
|
|
|
|
Ads1115GetValues(ads1115_addresses[t]);
|
2017-11-07 14:57:24 +00:00
|
|
|
if (json) {
|
2019-02-01 03:13:23 +00:00
|
|
|
Ads1115toJSON(comma);
|
|
|
|
comma = (char*)",";
|
2019-02-07 17:09:49 +00:00
|
|
|
}
|
2017-11-07 14:57:24 +00:00
|
|
|
#ifdef USE_WEBSERVER
|
2019-02-01 03:13:23 +00:00
|
|
|
else {
|
|
|
|
Ads1115toString(ads1115_addresses[t]);
|
2017-11-07 14:57:24 +00:00
|
|
|
}
|
2019-02-07 17:09:49 +00:00
|
|
|
#endif // USE_WEBSERVER
|
2017-11-07 14:57:24 +00:00
|
|
|
}
|
2019-02-07 17:09:49 +00:00
|
|
|
}
|
2019-02-01 03:13:23 +00:00
|
|
|
|
2019-02-07 17:09:49 +00:00
|
|
|
if (json) {
|
|
|
|
snprintf_P(mqtt_data, sizeof(mqtt_data), PSTR("%s]"), mqtt_data);
|
|
|
|
}
|
2017-11-07 14:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************************************\
|
|
|
|
* Interface
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2019-01-28 13:08:33 +00:00
|
|
|
bool Xsns12(uint8_t function)
|
2017-11-07 14:57:24 +00:00
|
|
|
{
|
2019-01-28 13:08:33 +00:00
|
|
|
bool result = false;
|
2017-11-07 14:57:24 +00:00
|
|
|
|
|
|
|
if (i2c_flg) {
|
|
|
|
switch (function) {
|
2017-12-25 16:41:12 +00:00
|
|
|
case FUNC_PREP_BEFORE_TELEPERIOD:
|
2017-11-07 14:57:24 +00:00
|
|
|
Ads1115Detect();
|
|
|
|
break;
|
2017-12-25 16:41:12 +00:00
|
|
|
case FUNC_JSON_APPEND:
|
2017-11-07 14:57:24 +00:00
|
|
|
Ads1115Show(1);
|
|
|
|
break;
|
|
|
|
#ifdef USE_WEBSERVER
|
2017-12-25 16:41:12 +00:00
|
|
|
case FUNC_WEB_APPEND:
|
2017-11-07 14:57:24 +00:00
|
|
|
Ads1115Show(0);
|
|
|
|
break;
|
|
|
|
#endif // USE_WEBSERVER
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // USE_ADS1115
|
|
|
|
#endif // USE_I2C
|