How to use the pinMode function from bindings

Find comprehensive JavaScript bindings.pinMode code examples handpicked from public code repositorys.

20
21
22
23
24
25
26
27
28
29
        analogRead(pinName) { return rpiplc.analogRead(this.hw[pinName]); }
        analogWrite(pinName, value) { rpiplc.analogWrite(this.hw[pinName], value); }
        delay(value) { rpiplc.delay(value); }
        digitalRead(pinName) { return rpiplc.digitalRead(this.hw[pinName]); }
        digitalWrite(pinName, value) { rpiplc.digitalWrite(this.hw[pinName], value); }
        pinMode(pinName, mode) { rpiplc.pinMode(this.hw[pinName], mode); }
}

module.exports = function(modelName) {
        return new RPIPLC(modelName);
fork icon1
star icon0
watch icon0

+ 19 other calls in file

13
14
15
16
17
18
19
20
21
22
23
24
$.setup = (m) =>{
  _wpi.setup();
}


$.pinMode = (p, m) =>{
  _wpi.pinMode(p, m)
}


$.digitalWrite = (p, v) =>{
  _wpi.digitalWrite(p, v)
fork icon0
star icon1
watch icon0

Other functions in bindings

Sorted by popularity

function icon

bindings.createKey is the most popular function in bindings (8616 examples)