parent
5f43a414e7
commit
a9256aec8b
|
@ -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 )
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue