We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48d1b3c commit fc8fa99Copy full SHA for fc8fa99
libraries/Bluefruit52Lib/examples/Peripheral/image_upload/image_upload.ino
@@ -133,7 +133,7 @@ void loop()
133
if ( !bleuart.notifyEnabled() ) return;
134
if ( !bleuart.available() ) return;
135
136
- PRINT_INT(bleuart.available());
+ //PRINT_INT(bleuart.available());
137
138
// all pixel data is received
139
if ( rxCount == 1 + 5 + imageWidth*imageHeight*3 )
@@ -156,6 +156,9 @@ void loop()
156
if ( pixelNum )
157
{
158
PRINT_INT(pixelNum);
159
+ PRINT_INT(imageX);
160
+ PRINT_INT(imageY);
161
+
162
for ( uint16_t i=0; i < pixelNum; i++)
163
164
uint8_t red = bleuart.read();
0 commit comments