1
0
mirror of https://github.com/kidoman/embd synced 2024-06-14 06:39:52 +02:00

removed debug println

This commit is contained in:
Max Matveev 2016-02-06 19:27:58 -08:00
parent 6e7e0c31bd
commit 5c026ec723

View File

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