We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried 3 74hc595 but it writes to only the first one. I'm using esp32s3.
#include <Arduino.h> // читаем hc165 и выводим соответственно на hc595 // 74hc595 #define CLK_595 10 #define CS_595 12 #define DAT_595 11 #include <GyverShift.h> GyverShift<OUTPUT, 3> outp(CS_595, DAT_595, CLK_595); void setup() { outp.write(0, 1); outp.write(7, 1); outp.write(15, 1); outp.write(23, 1); outp.update(); } void loop() {}
The text was updated successfully, but these errors were encountered:
#define GSHIFT_DELAY 10
Sorry, something went wrong.
check wiring try to #define GSHIFT_DELAY 10 before library include try another MCU
Wiring is ok, I tested with other Library. I don't have other MCU right now. Where exactly can I put #define GSHIFT_DELAY 10 in the code above?
No branches or pull requests
I tried 3 74hc595 but it writes to only the first one. I'm using esp32s3.
The text was updated successfully, but these errors were encountered: