diff options
author | Andy Shinn <[email protected]> | 2023-02-17 21:58:22 -0600 |
---|---|---|
committer | Ron Evans <[email protected]> | 2023-02-19 00:39:41 +0100 |
commit | 9296332151a9513ff5ce7846d6f57259e7de15b6 (patch) | |
tree | 87fd111859691a6253b4a227587b4a33868db895 | |
parent | 1125d421496cab5cd38134f658764ba4f349cf9a (diff) | |
download | tinygo-9296332151a9513ff5ce7846d6f57259e7de15b6.tar.gz tinygo-9296332151a9513ff5ce7846d6f57259e7de15b6.zip |
fix bad qt py pin assignment
-rw-r--r-- | src/machine/board_qtpy.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/machine/board_qtpy.go b/src/machine/board_qtpy.go index d0f89e461..49bb9c97b 100644 --- a/src/machine/board_qtpy.go +++ b/src/machine/board_qtpy.go @@ -29,7 +29,7 @@ const ( // Analog pins const ( - A0 = D1 + A0 = D0 A1 = D1 A2 = D2 A3 = D3 |