Skip to content

Instantly share code, notes, and snippets.

@AllAboutEE
AllAboutEE / eps8266_sms_nodemcu.lua
Last active April 2, 2016 21:47
ESP8266 NodeMcu SMS (Text Message)
-- 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"