03-29-2015, 02:31 PM
Got it working. The fix for the shift register not working was this:
inProcessBurstData << 1;
Needed to be changed to this:
inProcessBurstData = inProcessBurstData << 1;
That didn't fix the display issues. There were a number of things I had to change to make it display the data. Only thing left to do is to format the data prior to dumping it to the serial monitor.
Ed
inProcessBurstData << 1;
Needed to be changed to this:
inProcessBurstData = inProcessBurstData << 1;
That didn't fix the display issues. There were a number of things I had to change to make it display the data. Only thing left to do is to format the data prior to dumping it to the serial monitor.
Ed