This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function onInit() | |
local sus = require 'sus.Client' | |
if sus == nil then | |
print("Initcheck: SUS plugin is not installed") | |
return | |
else | |
print("Initcheck: SUS plugin is loaded") | |
sus:send{msg='Telldus LUA SUS is loaded'} | |
end | |
return |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function onInit() | |
local sus = require 'sus.Client' | |
if sus == nil then | |
print("Initcheck: SUS plugin is not installed") | |
return | |
else | |
print("Initcheck: SUS plugin is loaded") | |
sus:send{msg='Telldus LUA SUS is loaded'} | |
end | |
return |