HomeSort by relevance Sort by last modified time
    Searched refs:requestFrom (Results 1 - 3 of 3) sorted by null

  /external/arduino/libraries/Wire/
keywords.txt 16 requestFrom KEYWORD2
Wire.h 52 uint8_t requestFrom(uint8_t, uint8_t);
53 uint8_t requestFrom(int, int);
Wire.cpp 76 uint8_t TwoWire::requestFrom(uint8_t address, uint8_t quantity)
91 uint8_t TwoWire::requestFrom(int address, int quantity)
93 return requestFrom((uint8_t)address, (uint8_t)quantity);
182 // or after requestFrom(address, numBytes)
190 // or after requestFrom(address, numBytes)
213 // don't bother if rx buffer is in use by a master requestFrom() op
215 // meaning, they may not have read all the master requestFrom() data yet

Completed in 3127 milliseconds