Skip to content

Instantly share code, notes, and snippets.

@joerick
Created November 16, 2015 18:54
Show Gist options
  • Save joerick/99b03eafd0872016de13 to your computer and use it in GitHub Desktop.
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!
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