We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here are the designs for the keyboard:
Default view
Caps
Numbers
Symbols
Colour Variation Example
Instructions / Guide
Custom Icons (These may appear invisible on this page but i assure you there are there :) !)
Joe will follow up with the API
The text was updated successfully, but these errors were encountered:
As for the API, I'm thinking a blocking function for really simple use, just like a raw_input() call-
raw_input()
def keyboard_prompt(initial='', prompt='', ok_button='OK', background_color='black', allow_empty=True): # implementation here pass
So programs can use it like
password = keyboard_prompt(prompt='Password', initial='qwerty123')
Full example app:
import tingbot from tingbot import * state = {} @button.press('left') def change_name(): state['name'] = keyboard_prompt(state['name'], prompt='Name') def loop(): screen.fill(color='black') screen.text('Hello, %s!' % state['name']) tingbot.run(loop)
Sorry, something went wrong.
No branches or pull requests
Here are the designs for the keyboard:
Default view
Caps
Numbers
Symbols
Colour Variation Example
Colour Variation Example
Colour Variation Example
Instructions / Guide
Custom Icons (These may appear invisible on this page but i assure you there are there :) !)
Joe will follow up with the API
The text was updated successfully, but these errors were encountered: