Get started on server

This commit is contained in:
David Todd 2018-10-30 01:41:46 -05:00
parent ce77d1348a
commit 9501c284b8
1 changed files with 21 additions and 0 deletions

21
server/main.py Normal file
View File

@ -0,0 +1,21 @@
#!/usr/bin/env python
from bottle import route, run, template
from telegram.ext import Updater
import logging
import os
updater = Updater(os.env.get('TGTOKEN'))
dispatcher = updater.dispatcher
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
level=logging.INFO)
def start_tgbot(bot, update):
introtext = """Hello! My purpose is to control an IOT RGB LED matrix
To get started I will need to establish a connection to your device.
Please send `/newdevice` to get started
"""
bot.send_message(chat_id=update.message.chat_id,
text=introtext)