Fix issue #2753 and fix documentation example (#2776)

This commit is contained in:
galjonsfigur 2019-06-01 18:05:19 +02:00 committed by Marcel Stör
parent 5f43a414e7
commit a9256aec8b
2 changed files with 2 additions and 2 deletions

View File

@ -585,7 +585,7 @@ LROT_BEGIN(ads1115_instance)
#ifdef ADS1115_INCLUDE_TEST_FUNCTION
LROT_FUNCENTRY( test_volt_conversion, test_volt_conversion )
#endif
LROT_TABENTRY( "__index", ads1115_instance )
LROT_TABENTRY( __index, ads1115_instance )
LROT_FUNCENTRY( __gc, ads1115_lua_delete )
LROT_END(ads1115_instance, ads1115_instance, LROT_MASK_GC_INDEX )

View File

@ -125,7 +125,7 @@ adc1:setting(ads1115.GAIN_6_144V, ads1115.DR_128SPS, ads1115.SINGLE_0, ads1115.C
local function comparator(level, when)
-- read adc result with read() when threshold reached
gpio.trig(alert_pin)
volt, volt_dec, adc, sign = ads1:read()
volt, volt_dec, adc, sign = adc1:read()
print(volt, volt_dec, adc, sign)
end
gpio.mode(alert_pin, gpio.INT)