Short story: How do I pass parameters to callback functions in Lua?
Long story:
I'm working on an ESP8266 with the NodeMCU firmware. Essentially I intend to build a dash button, just with multiple buttons per node. I'm doing this with the interrupt possibility of the GPIO pins.
However how to pass parameters to the callback function doesn't seem to be well documented. In my case I want to know for which pin the interrupt came. This is what I came up with. It is working except for the value of the pin, that seems to reset to the initialization value of 1 when triggered.
-- Have an area to hold all pins to query (in testing only one)
buttonPins = { 5 }
direction="up"
armAllButtons()
function armAllButtons()
for i,v in ipairs(buttonPins)
do
armButton(v)
end
end
function armButton(buttonPin)
print("Arming pin "..buttonPin.." for button presses.")
gpio.mode(buttonPin,gpio.INT,gpio.FLOAT)
gpio.trig(buttonPin, direction, function (buttonPin) notifyButtonPressed(buttonPin) end)
print("Waiting for button press on "..buttonPin.."...")
end
function notifyButtonPressed(buttonPin)
print("Button at pin "..buttonPin.." pressed.")
--rearm the pins for interrupts
armButton(buttonPin)
end
However from within the notifyButtonPressed()
function, the value of buttonPin
is always 1 when pressed, not 5 as I would expect it to be. I'd assume that's probably the initialization value of number variables.
First of all, your code does not run at all... As is, it will throw an
After I rearranged your snippet as this:
it outputs:
For your callback work perfectly, you must pass a different function for each button, and not attempt to pass arguments to the functions... try this: