This file contains hidden or 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
| -- Your access point's SSID and password | |
| local SSID = "xxxxxx" | |
| local SSID_PASSWORD = "xxxxxx" | |
| -- configure ESP as a station | |
| wifi.setmode(wifi.STATION) | |
| wifi.sta.config(SSID,SSID_PASSWORD) | |
| wifi.sta.autoconnect(1) | |
| local TWILIO_ACCOUNT_SID = "xxxxxx" |