Skip to content

Commit

Permalink
Add audio driver examples. (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadas authored and kilnyy committed Feb 6, 2018
1 parent bb7f610 commit 2ac81af
Show file tree
Hide file tree
Showing 7 changed files with 322 additions and 0 deletions.
18 changes: 18 additions & 0 deletions examples/AudioSkill/README.md
@@ -0,0 +1,18 @@
### Hardwire Prepare

Ensure you have plugged in the microphone and earphone with the HEXA.

You can make a reference with https://documentation.vincross.com/Introduction/hardware.html#hardware-interfaces.

### Buttons Usage

##### 5 Buttons
1. There are 4 buttons for different simple functions.
1. Click 'stop' button to finish 'Listen and Play' or 'Record to the file' function.
1. Click 'stop' to interrupt 'Play with the file recorded before' or 'Play with Origin file' if you want.

##### 4 Functions
1. 'Listen and Play' plays the media data which HEXA records at the same time.
1. 'Record to the file' records the media data to a file on HEXA. The directory for skill will be removed and built every time you run `mind run`.
1. 'Play with the file recorded before' plays the media if you click 'Record to the file' before.
1. 'Play with Origin file' plays a music with the example. The file is put in directory 'robot/deps'.
5 changes: 5 additions & 0 deletions examples/AudioSkill/manifest.json
@@ -0,0 +1,5 @@
{
"name": "AudioSkill",
"skillID": "AudioSkill",
"version": "1.0.0"
}
76 changes: 76 additions & 0 deletions examples/AudioSkill/remote/index.html
@@ -0,0 +1,76 @@
<!DOCTYPE html>
<html>
<head>
<title>AudioSkill</title>
<script type="text/javascript" src="mind-framework.js"></script>
<script type="text/javascript">
mind.init({callback: function(robot){
skillID="AudioSkill";
robot.connectSkill({
skillID: skillID
});

document.getElementById("stop").onclick = function() {
robot.sendData({
skillID: skillID,
data: "stop"
})
}

document.getElementById("listenAndPlay").onclick = function() {
robot.sendData({
skillID: skillID,
data: "listenAndPlay"
})
}

document.getElementById("recordToFile").onclick = function() {
robot.sendData({
skillID: skillID,
data: "recordToFile"
})
}

document.getElementById("playWithOriginFile").onclick = function() {
robot.sendData({
skillID: skillID,
data: "playWithOriginFile"
})
}

document.getElementById("playWithFile").onclick = function() {
robot.sendData({
skillID: skillID,
data: "playWithFile"
})
}
}});



</script>
<style type="text/css">
#funcbox {
margin: 0 auto;
width: 650px;
}
#stopbox {
margin: 0 auto;
width: 50px;
}
</style>
</head>
<body>
<div id="funcbox">
<button id="listenAndPlay">Listen and Play</button>
<button id="recordToFile">Record to the file</button>
<button id="playWithFile">Play with the file recorded before</button>
<button id="playWithOriginFile">Play with Origin file</button>
</div>
<br>
<br>
<div id="stopbox">
<button id="stop">Stop</button>
</div>
</body>
</html>
Empty file.
Binary file added examples/AudioSkill/robot/deps/testmusic.wav
Binary file not shown.
220 changes: 220 additions & 0 deletions examples/AudioSkill/robot/src/audioskill.go
@@ -0,0 +1,220 @@
package AudioSkill

import (
"mind/core/framework/drivers/audio"
"mind/core/framework/log"
"mind/core/framework/skill"

"bufio"
"io"
"os"
"path/filepath"
"sync"
)

const (
RecordFileName = "record.raw"
OriginFilePath = "deps/testmusic.wav"

StatusStop = "stop"
StatusListenAndPlay = "listenAndPlay"
StatusRecordToFile = "recordToFile"
StatusPlayWithFile = "playWithFile"
StatusPlayWithOriginFile = "playWithOriginFile"
)

type AudioSkill struct {
skill.Base
stopRecordChan chan bool
stopListenAndPlayChan chan bool
stopPlayChan chan bool
workStatus string
statusMutex sync.Mutex
}

func NewSkill() skill.Interface {
// Use this method to create a new skill.
return &AudioSkill{
stopRecordChan: make(chan bool, 1),
stopListenAndPlayChan: make(chan bool, 1),
stopPlayChan: make(chan bool, 1),
workStatus: StatusStop,
}
}

func (d *AudioSkill) OnStart() {
// Use this method to do something when this skill is starting.
}

func (d *AudioSkill) OnClose() {
// Use this method to do something when this skill is closing.
}

func (d *AudioSkill) OnConnect() {
// Use this method to do something when the remote connected.
log.Info.Println("connect to skill...")
}

func (d *AudioSkill) RecordToFile() {
// Get the directory on HEXA of your skill. It will be removed and built every time you run 'mind run'.
log.Info.Println("Start record...")
defer log.Info.Println("Finish record...")
dataPath, err := skill.SkillDataPath()
if err != nil {
log.Error.Println("Get data path error:", err)
return
}
log.Info.Println("Get data path:", dataPath)

err = audio.Start()
if err != nil {
log.Error.Println("Start audio driver error:", err)
return
}
defer audio.Close()
audio.Init(1, 44100, audio.FormatS16LE)

os.Remove(filepath.Join(dataPath, RecordFileName))
file, err := os.OpenFile(filepath.Join(dataPath, RecordFileName), os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)
if err != nil {
log.Error.Println("Open file error:", err)
return
}
defer file.Close()
total := []byte{}
Loop:
for {
select {
case <-d.stopRecordChan:
break Loop
default:
readBuf, err := audio.Read()
if err != nil {
log.Error.Println("Audio read error:", err)
}
total = append(total, readBuf...)
}
}
file.Write(total)
}

func (d *AudioSkill) PlayWithFile(filepath string) {
log.Info.Println("Play file:", filepath)
defer log.Info.Println("Finish play:", filepath)
fi, err := os.Open(filepath)
if err != nil {
log.Error.Println("open filepath error:", err)
return
}
err = audio.Start()
if err != nil {
log.Error.Println("Start audio driver error:", err)
}
defer audio.Close()
audio.Init(1, 44100, audio.FormatS16LE)
buf := make([]byte, 1024)
r := bufio.NewReader(fi)
Loop:
for {
select {
case <-d.stopPlayChan:
break Loop
default:
_, err := r.Read(buf)
if err != nil {
if err == io.EOF {
break Loop
} else {
log.Error.Println("read err:", err)
return
}
}
audio.Write(buf)
}
}

}

func (d *AudioSkill) ListenAndPlay() {
log.Info.Println("Start Record and Play loop")
defer log.Info.Println("Finish Record and Play loop")
err := audio.Start()
if err != nil {
log.Error.Println("Start audio driver error:", err)
}
defer audio.Close()
audio.Init(1, 44100, audio.FormatS16LE)
readBuf := make([]byte, 1024)
Loop:
for {
select {
case <-d.stopListenAndPlayChan:
break Loop
default:
readBuf, err = audio.Read()
if err != nil {
log.Error.Println("read err:", err)
}
audio.Write(readBuf)
}
}
}

func (d *AudioSkill) OnDisconnect() {
// Use this method to do something when the remote disconnected.
}

func (d *AudioSkill) OnRecvJSON(data []byte) {
// Use this method to do something when skill receive json data from remote client.
}

func (d *AudioSkill) Stop() {
d.statusMutex.Lock()
defer d.statusMutex.Unlock()

switch d.workStatus {
case StatusStop:
case StatusPlayWithFile:
fallthrough
case StatusPlayWithOriginFile:
d.stopPlayChan <- true
case StatusRecordToFile:
d.stopRecordChan <- true
case StatusListenAndPlay:
d.stopListenAndPlayChan <- true
default:
}
d.workStatus = StatusStop
}

func (d *AudioSkill) OnRecvString(data string) {
// Use this method to do something when skill receive string from remote client.
log.Info.Println("Get command:", data)
if d.workStatus != StatusStop && data != StatusStop {
log.Warn.Println("Running other work:", d.workStatus)
return
}
switch data {
case StatusStop:
d.Stop()
case StatusListenAndPlay:
d.workStatus = StatusListenAndPlay
d.ListenAndPlay()
case StatusRecordToFile:
d.workStatus = StatusRecordToFile
d.RecordToFile()
case StatusPlayWithFile:
d.workStatus = StatusPlayWithFile
dataPath, err := skill.SkillDataPath()
if err != nil {
log.Error.Println("Get data path error:", err)
return
}
d.PlayWithFile(filepath.Join(dataPath, RecordFileName))
case StatusPlayWithOriginFile:
d.workStatus = StatusPlayWithOriginFile
d.PlayWithFile(OriginFilePath)
default:
}
d.workStatus = StatusStop
}
3 changes: 3 additions & 0 deletions examples/README.md
Expand Up @@ -41,3 +41,6 @@ SelectGaitSkill is an example project showing how to select different gaits for
## [CameraSkill](CameraSkill)
CameraSkill use the media to show the video on the remote webpage.

## [AudioSkill](AudioSkill)
AudioSkill shows some simple examples that how to use 'audio' driver on HEXA.

0 comments on commit 2ac81af

Please sign in to comment.