removed debug println

This commit is contained in:
Max Matveev 2016-02-06 19:27:58 -08:00
parent 6e7e0c31bd
commit 5c026ec723
1 changed files with 1 additions and 2 deletions

View File

@ -3,13 +3,13 @@
package rpi
import (
"fmt"
"os"
"sync"
"github.com/golang/glog"
"github.com/kidoman/embd"
"io/ioutil"
"fmt"
)
type w1Bus struct {
@ -28,7 +28,6 @@ type w1Device struct {
}
func NewW1Bus(l byte) embd.W1Bus {
fmt.Println("new w1 bus")
return &w1Bus{l: l, busMap: make(map[string]embd.W1Device)}
}