MCPcopy Create free account
hub / github.com/Arduino-IRremote/Arduino-IRremote / write8bits

Method write8bits

examples/AllProtocolsOnLCD/LiquidCrystal.cpp:340–346  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

338}
339
340void LiquidCrystal::write8bits(uint8_t value) {
341 for (int i = 0; i < 8; i++) {
342 digitalWrite(_data_pins[i], (value >> i) & 0x01);
343 }
344
345 pulseEnable();
346}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected