Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mutronics committed May 13, 2020
0 parents commit 0a015d7
Show file tree
Hide file tree
Showing 7 changed files with 85 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
__pycache__/
*.qmlc
settings.json

20 changes: 20 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (C) 2012 Yoshimasa Niwa

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# <img src="https://raw.githack.com/FortAwesome/Font-Awesome/master/svgs/solid/robot.svg" card_color="#58E17D" width="50" height="50" style="vertical-align:bottom"/> Walking
Walking skill for sweetie bot robot

## About
This skill instructs sweetie bot robot to move itself

## Examples
* "Walk"
* "Turn"

## Credits
mutronics

## Category
**IoT**
Robot

## Tags
#Robot
#Sweetie bot

15 changes: 15 additions & 0 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from mycroft import MycroftSkill, intent_file_handler


class Walking(MycroftSkill):
def __init__(self):
MycroftSkill.__init__(self)

@intent_file_handler('walking.intent')
def handle_walking(self, message):
self.speak_dialog('walking')


def create_skill():
return Walking()

1 change: 1 addition & 0 deletions locale/en-us/walking.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Okay
2 changes: 2 additions & 0 deletions locale/en-us/walking.intent
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Walk
Turn
22 changes: 22 additions & 0 deletions settingsmeta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

skillMetadata:
sections:
- name: Options << Name of section
fields:
- name: internal_python_variable_name
type: text
label: Setting Friendly Display Name
value: ""
placeholder: demo prompt in the input box
- name: Login << Name of another section
fields:
- type: label
label: Just a little bit of extra info for the user to understand following settings
- name: username
type: text
label: Username
value: ""
- name: password
type: password
label: Password
value: ""

0 comments on commit 0a015d7

Please sign in to comment.