We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60b2cdb commit 092e819Copy full SHA for 092e819
circuitpython/code.py
@@ -22,6 +22,7 @@
22
23
supervisor.runtime.autoreload = False
24
25
+VERSION = "1.3.0"
26
# The file in which the settings are saved
27
SETTINGSFILE = "settings.json"
28
# The file in which the macros are saved
@@ -456,6 +457,8 @@ def start(self) -> None:
456
457
if self.serial_last_state != self.serial_data.connected:
458
self.serial_last_state = self.serial_data.connected
459
if self.serial_data.connected:
460
+ self._send_serial_data(
461
+ {'ACK': 'version', 'CONTENT': VERSION})
462
self._send_serial_data(
463
{'ACK': 'usbenabled', 'CONTENT': self.readonly})
464
0 commit comments