lines: test: byte in both bin and dec

keeper
EmaMaker 2022-07-03 13:22:19 +02:00
parent a50313404a
commit f942371ef6
1 changed files with 5 additions and 2 deletions

View File

@ -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)
{ {