Merge pull request #253 from ekyoung/dev

Correct the release command sent to pi-blaster.
This commit is contained in:
Ron Evans 2016-01-09 15:31:00 -08:00
commit ef61647a3a
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ func (r *RaspiAdaptor) Finalize() (errs []error) {
}
}
for _, pin := range r.pwmPins {
if err := r.piBlaster(fmt.Sprintf("%v=release\n", pin)); err != nil {
if err := r.piBlaster(fmt.Sprintf("release %v\n", pin)); err != nil {
errs = append(errs, err)
}
}