Skip to content

Commit

Permalink
Fix issue #2753 and fix documentation example
Browse files Browse the repository at this point in the history
  • Loading branch information
galjonsfigur committed May 31, 2019
1 parent 5f43a41 commit a8b43ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/modules/ads1115.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 )

Expand Down
2 changes: 1 addition & 1 deletion docs/modules/ads1115.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a8b43ee

Please sign in to comment.