03-09-2015, 12:24 PM
Chuck,
Change your setup function as follows. The INPUT_PULLUP mode enables the pull-up resistors on the clock and data lines. It compiled fine but of course I couldn't test it on hardware yet.
Ed
Change your setup function as follows. The INPUT_PULLUP mode enables the pull-up resistors on the clock and data lines. It compiled fine but of course I couldn't test it on hardware yet.
Ed
Code:
void setup() {
// Pin Set Up
pinMode(dataIn, INPUT_PULLUP);
pinMode(clockIn, INPUT_PULLUP);
Serial.begin(115200);
Serial.println("Ready: ");
}