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
At the moment the image does not render properly.
it would be best to check the image width / height, and transmit the data packets in either a row-first or column-first order;
it might be possible to do via sending the params out of order:
ie: in espcode.ino ~line 270
Serial.print(F(">>>")); //start of data tagsend16(mcu_pixels); // number of pixels in this blockif (landscape)
{
send16(mcu_x); // position xsend16(mcu_y); // position ysend32(param_x); // widthsend32(param_y); // height
}
else
{
send16(mcu_y); // position x is now the old y.send16(mcu_x); // position y is now the old x. (swivel.)send32(param_y); // the width is the height of the old picture.send32(param_x); // the height is the width of the old picture
}
however you might have to transpose the pImg data as well.
The text was updated successfully, but these errors were encountered:
At the moment the image does not render properly.
it would be best to check the image width / height, and transmit the data packets in either a row-first or column-first order;
it might be possible to do via sending the params out of order:
ie: in espcode.ino ~line 270
however you might have to transpose the
pImg
data as well.The text was updated successfully, but these errors were encountered: