(value)
| 300 | this.write((value >> 7) & 0x7F); |
| 301 | } |
| 302 | writeString(value) { |
| 303 | for (let i = 0; i < value.length; i++) |
| 304 | this.write14Bits(value.charCodeAt(i)); |
| 305 | } |
| 306 | |
| 307 | usePins(pins, use) { |
| 308 | for (let pin = 0; pins; pin++, pins >>= 1) { |
nothing calls this directly
no test coverage detected