Lines Matching refs:regoff
172 uint8_t regoff;
175 regoff = REG_ALL_LED_ON_H;
177 regoff = REG_LED0_ON_L + (led * 4) + 1;
179 uint8_t bits = readByte(regoff);
186 return writeByte(regoff, bits);
200 uint8_t regoff;
203 regoff = REG_ALL_LED_OFF_H;
205 regoff = REG_LED0_ON_L + (led * 4) + 3;
207 uint8_t bits = readByte(regoff);
214 return writeByte(regoff, bits);
235 uint8_t regoff;
238 regoff = REG_ALL_LED_ON_L;
240 regoff = REG_LED0_ON_L + (led * 4);
243 uint8_t onbit = (readByte(regoff + 1) & 0x10);
247 return writeWord(regoff, time);
268 uint8_t regoff;
271 regoff = REG_ALL_LED_OFF_L;
273 regoff = REG_LED0_ON_L + (led * 4) + 2;
276 uint8_t offbit = (readByte(regoff + 1) & 0x10);
280 return writeWord(regoff, time);