Premiers tests

This commit is contained in:
Antoine Van Elstraete 2022-07-07 01:05:05 +02:00
parent e5023a0dd5
commit 3e30b4d666
Signed by: AntoineVe
GPG Key ID: E36069A977E2A9ED

9
server.lua Normal file
View File

@ -0,0 +1,9 @@
cs=coap.Server()
cs:listen(5683)
function hello(payload)
print("hello called")
respond = "hello"
return respond
end
cs:func("hello")