Created
November 16, 2015 18:54
-
-
Save joerick/99b03eafd0872016de13 to your computer and use it in GitHub Desktop.
IFTTT to display an SMS. See https://www.youtube.com/watch?v=yZg8OIzVByM&feature=youtu.be for more info!
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
import tingbot | |
from tingbot import * | |
screen.fill(color='black') | |
screen.text('Waiting...') | |
@webhook('demo_sms') | |
def on_webhook(data): | |
screen.fill(color='black') | |
screen.text(data, color='green') | |
tingbot.run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment