From ea7d517bdf466d75ddb8b945d6c0d7333b88d7a5 Mon Sep 17 00:00:00 2001 From: Blaine Rothrock Date: Wed, 3 Jul 2024 14:01:09 -0500 Subject: [PATCH] added textual support --- demo/test.py | 2 +- pyproject.toml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/demo/test.py b/demo/test.py index a9a6e1f..8ccf54c 100644 --- a/demo/test.py +++ b/demo/test.py @@ -2,7 +2,7 @@ # Create a robot -name = "dink" +name = "WAC-C9B9" robot = Robot(name) # assign button A to set LED to blue for 1 second diff --git a/pyproject.toml b/pyproject.toml index 41f49f3..8012160 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "weallcode_robot" -version = "3.1.0" +version = "3.0.4" description = "Micro:bit TinyBit BLE Python Library" license = "MIT" authors = [ @@ -38,7 +38,8 @@ profile = "black" [tool.poetry.dependencies] python = "^3.11" -bleak = "^0.22.1" +bleak = "^0.20.1" +textual=="^0.71.0" [tool.poetry.group.dev.dependencies] black = "^23.3.0"