def start(self, bot, update):
keyboardStr = [
["-", "?", "+"],
["?", " ", "?"],
["?", "?", "?"],
["STOP"],
]
headKeyboard = [
[" ", "?", " "],
["?", " ", "?"],
[" ", "?", " "],
["Paparazzi"],
]
gripperKeyboard = [
["Open Left", "Open Right"],
["Close Half Left", "Close Half Right"],
["Close Left", "Close Right"]
]
keyboard = self.createKeyboard(keyboardStr)
reply_markup = ReplyKeyboardMarkup(keyboard)
update.message.reply_text(
'Tap the arrows to move the PR2:', reply_markup=reply_markup)
评论列表
文章目录