-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.go
97 lines (75 loc) · 1.46 KB
/
dev.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package it8951
import (
"github.com/peergum/go-rpio/v5"
"log"
"time"
)
//
const (
EpdRstPin = 17 //11 // Raspberry Pi Pin 17
EpdCsPin = 8 //24 // Raspberry Pi Pin 8
EpdBusyPin = 24 //18 // Raspberry Pi Pin 24
)
var (
rstPin rpio.Pin
csPin rpio.Pin
readyPin rpio.Pin
)
// Open sets the I/O ports and SPI
func Open() (err error) {
Debug("Init start")
if err := rpio.Open(); err != nil {
log.Fatalln("RPIO Open Error:", err)
}
//
// init SPI
//
Debug("Initializing SPI")
if err := rpio.SpiBegin(rpio.Spi0); err != nil {
log.Fatalln("SpiBegin Error:", err)
}
rpio.SpiChipSelect(0)
rpio.SpiSpeed(24000000) // 24MHz
rpio.SpiMode(0, 0)
//
// init pins
//
Debug("Initializing GPIO pins")
rstPin = rpio.Pin(EpdRstPin)
csPin = rpio.Pin(EpdCsPin)
readyPin = rpio.Pin(EpdBusyPin)
rstPin.Output()
csPin.Output()
readyPin.Input()
csOff()
Debug("EPD initialization complete")
return nil
}
// Close ends SPI usage and restores pins
func Close() {
Debug("Shutting down EPD")
csPin.Low()
rstPin.Low()
rpio.SpiEnd(rpio.Spi0)
rpio.Close()
}
// csOn selects slave
func csOn() {
//Debug("CS On")
csPin.Low()
}
// csOff deselects slave
func csOff() {
//Debug("CS Off")
csPin.High()
}
// Reset resets a slave
func Reset() {
Debug("EPD Reset")
rstPin.High()
time.Sleep(time.Duration(200) * time.Millisecond)
rstPin.Low()
time.Sleep(time.Duration(10) * time.Millisecond)
rstPin.High()
time.Sleep(time.Duration(200) * time.Millisecond)
}