From 76edee0a2c101005e96b5fc20541b0719912982a Mon Sep 17 00:00:00 2001 From: Guy Carver Date: Fri, 14 May 2021 13:11:15 -0400 Subject: [PATCH] Auto start lidar --- ttgo/boot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ttgo/boot.py b/ttgo/boot.py index 4eddea1..cc9166f 100644 --- a/ttgo/boot.py +++ b/ttgo/boot.py @@ -13,6 +13,6 @@ tft = display.TFT() tft.init(tft.ST7789, bgr=False, rot=tft.LANDSCAPE, miso=17, backl_pin=4, backl_on=1, mosi=19, clk=18, cs=5, dc=16) tft.setwin(40, 52, 320, 240) -# import lidar -# lidar.run(tft) +import lidar +lidar.run(tft)