Skip to content

Commit

Permalink
Fixed wrong string concat
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicklas2751 committed Jan 7, 2017
1 parent 58771ca commit d4491c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run.lua
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function startListen()
log('debug msg for:'..topic)
if data ~= nil and topic == config.topic.switch433mhz.path then
-- do something, we have received a message
log("Recived: "+data)
log("Recived: "..data)
rc.send(4,data,24,185,1,10) --Sends the data via GPIO pin 4 to the rc switch.
end
end)
Expand Down

0 comments on commit d4491c4

Please sign in to comment.