From d88a47d7938acb716f631122e023bbda4e2529d8 Mon Sep 17 00:00:00 2001 From: Pierrick C Date: Sat, 4 Aug 2018 14:26:08 +0200 Subject: [PATCH] Add end of line symbol to after json output to uart --- circuitpython/code/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circuitpython/code/main.py b/circuitpython/code/main.py index de02760..3d0c429 100644 --- a/circuitpython/code/main.py +++ b/circuitpython/code/main.py @@ -319,7 +319,7 @@ while True: if print_data: data.show() if send_json_data: - rpi_uart.write(data.json) + rpi_uart.write(data.json + '\n') if backup_data: data.write_on_flash() if data_to_neopixel: