-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgpio commands.ts
214 lines (194 loc) · 5.37 KB
/
gpio commands.ts
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
import * as rpio from 'rpio';
// import { init as rpioInit, open as rpioOpen, LOW, OUTPUT, INPUT, HIGH, PULL_OFF, write, read } from 'rpio';
export const apiRevision = 1;
export enum Pin {
SS0 = 12,
SS1 = 16,
SS2 = 18,
SSDI = 35,
SSDO = 38,
SCLK = 40,
}
export function init() {
rpio.init({
gpiomem: true, /* Use /dev/gpiomem */
mapping: 'physical', /* Use the P1-P40 numbering scheme */
// mock: undefined, /* Emulate specific hardware in mock mode */
});
const outputs = [
Pin.SS0,
Pin.SS1,
Pin.SS2,
Pin.SSDO,
Pin.SCLK,
];
for (const output of outputs) {
rpio.open(output, rpio.OUTPUT, rpio.LOW);
}
const inputs = [
Pin.SSDI,
];
for (const input of inputs) {
rpio.open(input, rpio.INPUT, rpio.PULL_OFF);
}
}
function select(i: number) {
rpio.write(Pin.SS1, 0);//!(i & (1 << 1)));
rpio.write(Pin.SS2, i & (1 << 2));
rpio.write(Pin.SS0, i & (1 << 0));
}
function spiWrite(...data: number[]) {
for (const byte of data) {
for (let i=7; i>=0; i--) {
rpio.write(Pin.SCLK, rpio.LOW);
rpio.write(Pin.SSDO, byte & (1<<i)? rpio.HIGH : rpio.LOW);
rpio.write(Pin.SCLK, rpio.HIGH);
}
console.log('write byte ', byte);
}
rpio.write(Pin.SCLK, rpio.LOW);
}
function spiRead(bytes: number): number[] {
const data: number[] = [];
rpio.write(Pin.SCLK, rpio.LOW);
for (let b=0; b<bytes; b++) {
let byte = 0;
for (let i=7; i>=0; i--) {
rpio.write(Pin.SCLK, rpio.HIGH);
byte |= (rpio.read(Pin.SSDI)? 1:0) << i;
rpio.write(Pin.SCLK, rpio.LOW);
}
console.log('read byte ', byte, b);
data.push(byte);
}
return data;
}
function sendCommand(...bytes: number[]): number[] {
spiWrite(
'S'.charCodeAt(0),
bytes.length,
...bytes,
bytes.reduce((prev, val) => prev + val, 0) & 0xFF,
'E'.charCodeAt(0),
);
let ready = 0;
rpio.write(Pin.SCLK, rpio.LOW);
while (ready !== 'R'.charCodeAt(0)) {
rpio.write(Pin.SCLK, rpio.HIGH);
ready <<= (rpio.read(Pin.SSDI)? 1:0);
rpio.write(Pin.SCLK, rpio.LOW);
if (ready === 'L'.charCodeAt(0)) {
throw `sent wrong length command (${bytes.length}), board wanted ${spiRead(1)[0]}`;
}
if (ready === 'C'.charCodeAt(0)) {
throw 'checksum fail from board';
}
}
const numInputBytes = spiRead(1)[0];
if (numInputBytes > 0) {
const inputBytes = spiRead(numInputBytes+1);
const input = inputBytes.slice(0, inputBytes.length - 1);
const sum = input.slice(0, input.length - 1).reduce((prev, val) => prev + val, 0) & 0xFF;
if (sum !== inputBytes[inputBytes.length - 1])
throw `checksum fail, input ${inputBytes[inputBytes.length - 1]} != ${sum} for bytes ${input}`;
return input;
}
return [];
}
export enum BoardType {
Solenoid16 = 5,
}
export function identify(board: number): {
type: BoardType;
hwRevision: number;
apiRevision: number;
} {
select(board);
const id = sendCommand(
0b11111110,
);
if (id.length !== 2)
throw `got wrong identify message back (length ${id.length})`;
return {
type: id[0] & 0b11111,
hwRevision: (id[0] & 0b11110000) >> 4,
apiRevision: id[1],
};
}
function i4(i: number): number[] {
return [
(i >> 0) & 0xFF,
(i >> 8) & 0xFF,
(i >> 16) & 0xFF,
(i >> 24) & 0xFF,
];
}
enum SolenoidMode {
Disabled = 0,
Input = 1,
Momentary = 2,
OnOff = 3,
Triggered = 4,
}
export class Solenoid16 {
constructor(
public board: number,
) {
const { type, apiRevision: apiRev} = identify(board);
if (type !== BoardType.Solenoid16)
throw `wrong board type ${type}`;
if (apiRev !== apiRevision)
throw `wrong api revision ${apiRev}`;
for (let i=0; i<16; i++) {
this.disableSolenoid(i+1);
}
}
startCommand(num: number, cmd: number): number {
select(this.board);
return cmd << 4 | (num - 1);
}
fireSolenoid(num: number) {
sendCommand(
this.startCommand(num, 0),
);
}
fireSolenoidFor(num: number, onTime: number) {
sendCommand(
this.startCommand(num, 0b0001),
onTime,
);
}
disableSolenoid(num: number) {
sendCommand(
this.startCommand(num, 0b0110),
SolenoidMode.Disabled,
...i4(0),
);
}
initMomentary(num: number, onTime = 50) {
sendCommand(
this.startCommand(num, 0b0110),
SolenoidMode.Momentary,
...i4(0),
...i4(onTime),
);
}
initInput(num: number, settleTime = 3) {
sendCommand(
this.startCommand(num, 0b0110),
SolenoidMode.Input,
...i4(0),
settleTime,
);
}
initTriggered(num: number, triggeredBy: number, minOnTime = 0, maxOnTime = 50) {
sendCommand(
this.startCommand(num, 0b0110),
SolenoidMode.Input,
...i4(0),
triggeredBy - 1,
...i4(minOnTime),
...i4(maxOnTime),
);
}
}