lines: test: byte in both bin and dec
parent
a50313404a
commit
f942371ef6
|
@ -115,8 +115,11 @@ void LineSysCamera::outOfBounds()
|
||||||
void LineSysCamera::test()
|
void LineSysCamera::test()
|
||||||
{
|
{
|
||||||
update();
|
update();
|
||||||
DEBUG.print("Byte Read: ");
|
DEBUG.print("Byte Read: (bin)");
|
||||||
DEBUG.println(CURRENT_INPUT_READ.lineByte, BIN);
|
DEBUG.print(CURRENT_INPUT_READ.lineByte, BIN);
|
||||||
|
DEBUG.print(" (dec) ");
|
||||||
|
DEBUG.println(CURRENT_INPUT_READ.lineByte, DEC);
|
||||||
|
|
||||||
DEBUG.print("In: ");
|
DEBUG.print("In: ");
|
||||||
for (DataSource *d : in)
|
for (DataSource *d : in)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue