| 1234567891011121314151617181920212223242526272829303132333435363738 |
- DEBUG = true
- function debug_message(message)
- if DEBUG then
- print(message)
- end
- --TODO: rolling last 10
- end
- local yo = require('yo')
- local server = require('server')
- local statusMessages = {
- [0] = 'not enabled',
- 'connecting',
- 'wrong password',
- 'network not found',
- 'connection fail',
- 'connected'
- }
- a = '0c6ac771-71fa-420f-810c-2853989a8ca6'
- y = 'ariyeah'
- wifi.sta.config('Pizza Pirate Cove', 'pizzapirates')
- wifi.setmode(wifi.STATION)
- function short_press()
- server.stop()
- yo.yo(y, a)
- end
- function long_press()
- current_settings = {
- yo_recipient = y,
- ssid = wifi.sta.getconfig(),
- status = statusMessages[wifi.sta.status()]
- }
- server.start(current_settings)
- end
|