I was able to unblock the code by changing:
FROM:
HDTemp[ (7 - row) * 10][col] = val;
TO:
HDTemp[ (31 - row) * 10][col] = val;
The HDTemp may be overflowing. When outputting...
Type: Posts; User: clampron
I was able to unblock the code by changing:
FROM:
HDTemp[ (7 - row) * 10][col] = val;
TO:
HDTemp[ (31 - row) * 10][col] = val;
The HDTemp may be overflowing. When outputting...
It's hanging on the following line within InterpolateRows() after reaching row 8 and col 0:
HDTemp[ (7 - row) * 10][col] = val;
void InterpolateRows() {
// interpolate the 8 rows...
Thank you for helping
Sketch uses 22392 bytes (2%) of program storage space. Maximum is 1048576 bytes.
Global variables use 95620 bytes (36%) of dynamic memory, leaving 166524 bytes for local...
@KrisKasprzak, nice work on this project. Very cool!
Wondering if you (or someone else) could point me in the right direction. I'm trying to leverage what you've built for a different purpose. ...
I was able to get the SHARP Memory Display working with the Teensy 3.6. (Adafruit SHARP Memory Display Breakout - 2.7" 400x240)
I posted this earlier today on another forum and figured I'd share...
@ Kurt: Thank you!! That worked :)
I'm experiencing the same issue. error: 'class ADC' has no member named 'setAveraging'
Arduino: 1.8.12
Teensyduino: 1.51
I haven't downgraded yet as I have another computer running an older...