You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Trying to decode my hot tub communication to make it available wireless. From my initial measurements I see the clock cycle is 7-bits and not 8-bit that is standard SPI. I see in the SoftSPIB library can configure transmission(Tx) but how about reception(Rx).
Hi! I've neve tested the read feature. It was not needed in my application.
Looking to following code fragment present in function uint16_t SoftSPIB::transferBits(uint16_t val, uint8_t bits):
'''
bval = digitalRead(_miso);
if (_order == MSBFIRST) {
out <<= 1;
out |= bval;
} else {
out >>= 1;
out |= bval << (bits - 1);
}
'''
Hi,
Trying to decode my hot tub communication to make it available wireless. From my initial measurements I see the clock cycle is 7-bits and not 8-bit that is standard SPI. I see in the SoftSPIB library can configure transmission(Tx) but how about reception(Rx).
Link to my initial measurements - https://github.com/MagnusPer/Balboa-GS510SZ
The text was updated successfully, but these errors were encountered: