using two channel #661
harissutanrafiq
started this conversation in
Ideas
Replies: 1 comment 3 replies
-
Your split connection method does not provide any advantages over connecting two rows of panels in series. In both cases, updating two rows of panels takes about twice as long as updating one. And in your case, it is even slower, since you have to switch the LAT pin. It is much more efficient to connect PIN_R1 and PIN_R2 to different pins, while connecting the both LAT (as well CLK and OE) to the same. In this case, you will be able to output data to the lower and upper panel rows in true parallel mode. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
when I using this mocohrome library https://github.com/freetronics/DMD, i have success split a data using 2 hub12
with 2 (2 row p10 module) 32x16
PIN_R1 = 12
PIN_R2 = 12
LAT_HUB_1 = 18
LAT_HUB_2 = 19
the logic it simple
if ( y <= 31){
LAT_HUB_1 = HIGH;
}else{
LAT_HUB_2 = HIGH;
}
any idea how to implement in this library ..? i try read your code but iam could not find when you set lat pin high ;(
Beta Was this translation helpful? Give feedback.
All reactions