How to use the delay function from bindings

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

17
18
19
20
21
22
23
24
25
26

        get version() { return rpiplc.version; }

        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); }
}
fork icon1
star icon0
watch icon0

+ 19 other calls in file

Other functions in bindings

Sorted by popularity

function icon

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