Git Product home page Git Product logo

mytechnotalent / micropython-micro-bit-talking-textabot Goto Github PK

View Code? Open in Web Editor NEW
3.0 3.0 2.0 1.06 MB

This is a FUN talking TextaBot for the official BBC micro:bit V2 where you get to build your VERY OWN TALKING TEXTABOT FROM SCRATCH!

License: Apache License 2.0

Python 100.00%
micropython microbit micro-bit bot chatbot chatbots chatbot-example chatbot-framework chatbot-application microbit-scripts

micropython-micro-bit-talking-textabot's Introduction

image

MicroPython-micro-bit

Talking TextaBot

This is a FUN talking TextaBot for the official BBC micro:bit V2 where you get to build your VERY OWN TALKING TEXTABOT FROM SCRATCH!

Schematic

image

Parts

micro:bit

STEP 1: Navigate To The FREE micro:bit Python Web Editor

micro:bit Python Web Editor

image

STEP 2: Plug micro:bit V2 Into Computer

*PLUG IN USB CABLE TO COMPUTER AND DEVICE

STEP 3: Click CONNECT

image

STEP 4: Click "BBC micro:bit CMSIS-DAP" & CONNECT

image

STEP 5: Highlight Sample Code - Select All

image

STEP 6: Click Backspace On Keyboard To Delete Sample Code

image

STEP 7: Copy Talking TextaBot Python Code Template Into Python Web Editor

CODE

import time

import gc
from microbit import *
from speech import say

# Generic talking educational database
generic_ted = {
                'your name': 'My name is Mr. George.',
                'food': 'I like pizza.',
                # ADD MORE HERE
              }

# Define bot talking speed
SPEED = 95

# Button press time
PRESS_TIME = 0.2

# Create alphabet list
alphabet = [
                'a', 
                'b', 
                'c',
                'd',
                'e',
                'f',
                'g',
                'h',
                'i',
                'j',
                'k',
                'l',
                'm',
                'n',
                'o',
                'p',
                'q',
                'r',
                's',
                't',
                'u',
                'v',
                'w',
                'x',
                'y',
                'z'
           ]

# Create empty word string
word = ''

# Create alphabet_position and init to 0
alphabet_position = 0

# Use -1 as arrays are 0 indexed
alphabet_length = len(alphabet) - 1

# Init display with initial value
display.show(alphabet[alphabet_position])
time.sleep(PRESS_TIME)


def bot(ted, question):
    """
    Function to handle bot
    
    Params:
        ted : dict
        question : str
    """
    # Init LED happy image 
    display.show(Image.HAPPY)
    
    # This is an advanced topic as well however this little function
    # cleans out the unnecessary global objects or variables on what
    # we call the heap area in memory
    gc.collect()
    
    # Init response object
    response = ''
    
    # We want to make sure that our dictionary database can 
    # find all values even if you use a capital letter
    # so we convert everything to lowercase 
    question = question.lower()
    
    # If you type something other than an empty string that means 
    # question has a value so the rest of the code will continue
    # on
    if question:
        # This is a bit complicated do not worry about this for now
        # all this is doing is looking through our dictionary database
        # and seeing if our input value has the word or words which
        # match an entry in the dictionary database and if it does
        # put the value in the _response object
        response = [val for key, val in ted.items() if key in question]
        gc.collect()
        
        # If our bot got a response from us then make sure
        # we trigger the speaking or suprised image so our bot
        # can open its mouth to talk and then have our bot
        # talk to us in our REPL and by hearing it speak as well
        # and if the user types in a trigger work that is not 
        # recognized then provide a custom default response
        if response:
            display.show(Image.SURPRISED)
            print('BOT: {0}'.format(response[0]))
            say(str(response[0]), speed=SPEED)
            display.show(Image.HAPPY)
        else:
            display.show(Image.SURPRISED)
            print('BOT: That is not something I am familiar with.')
            say('That is not something I am familiar with.', speed=SPEED)
            display.show(Image.HAPPY)
            
    gc.collect()
    

try:
    while True:
        if button_a.is_pressed():
            if alphabet_position >= alphabet_length:
                time.sleep(PRESS_TIME)
            else:
                alphabet_position += 1
                display.show(alphabet[alphabet_position])
                time.sleep(PRESS_TIME)
        if button_b.is_pressed():
            if alphabet_position <= 0:
                time.sleep(PRESS_TIME)
            else:
                alphabet_position -= 1
                display.show(alphabet[alphabet_position])
                time.sleep(PRESS_TIME)
        if pin_logo.is_touched():
            word += alphabet[alphabet_position]
            display.scroll(word)
            time.sleep(PRESS_TIME)
            display.show(alphabet[alphabet_position])
        if not pin1.read_digital():
            space = ' '
            word += space
            display.show('_')
            time.sleep(PRESS_TIME)
        if not pin2.read_digital():
            bot(generic_ted, word)
            word = ''
            time.sleep(PRESS_TIME + 0.75)
            display.show(alphabet[alphabet_position])
            
        gc.collect()
except:
    pass

STEP 8: Rename Script Name To talking_textabot

STEP 9: Click Save

image

STEP 10: Click Download Python Script

image

STEP 11: Click Flash

image

STEP 12: Interact With Baby TextaBot, Teach It Everything You Want!

This is a little itty bitty baby TextaBot that only knows how to respond to "What is your name?" or "What is your favorite food?" so this is a great chance to teach it everything you want by adding in additional trigger word or words and a response phrase you would like your bot to say. Let's look at an example. At the top of the code you will see the following.

# Generic talking educational database
generic_ted = {
                'your name': 'My name is Mr. George.',
                'favorite food': 'I like pizza.',
                # ADD MORE HERE
              }

Let's say we want to add the trigger words favorite candy and the bot's response as I like chocolate. and to do this lets put a blank line under # ADD MORE HERE and make the code look like the following.

```python
# Generic talking educational database
generic_ted = {
                'your name': 'My name is Mr. George.',
                'favorite food': 'I like pizza.',
                # ADD MORE HERE
                'favorite candy': 'I like chocolate.',
              }

STEP 13: Redo STEP 9, STEP 10 & STEP 11

STEP 14: TextaBot Controls

The following are a list of controls to work with TextaBot.

  • A Button = Cycle through the letters until you find the letter of choice to build our word.
  • B Button = Cycle-back through the letters until you find the letter of choice to build our word.
  • Logo Image = Add the currently displayed letter to the word. The word will start out blank so if the letter currently displayed is a an a will be added to the word. You can add more letters to your word by using the A and B Buttons to cycle and then press the Logo Image again to add the next currently displayed letter to the word.
  • Pin1 = Touch Pin1 to add a space if you are making more than one word for your trigger words.
  • Pin2 = Touch Pin2 to send your word or words to Mr. George so he can respond to you!

STEP 15: Add More Trigger Word/Words & TextaBot Responses To The Database!

Let's teach our TextaBot more stuff! Repeat 12, 13 and 14 as much as you like!

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

Apache License, Version 2.0

micropython-micro-bit-talking-textabot's People

Contributors

mytechnotalent avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

amelonio incod3

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.