Skip to content

Commit c2418ee

Browse files
authored
Merge pull request #1020 from pimoroni/patch-misc
A roundup of not necessarily related fixes from other branches
2 parents 6ac9bc0 + 2b25e79 commit c2418ee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/micropython.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
uses: actions/checkout@v4
8888
with:
8989
repository: gadgetoid/py_decl
90-
ref: v0.0.1
90+
ref: v0.0.4
9191
path: py_decl
9292

9393
- name: Build MPY Cross

drivers/uc8151/uc8151.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ namespace pimoroni {
389389
}
390390

391391
void UC8151::power_off() {
392-
command(POF);
392+
//command(POF);
393393
}
394394

395395
void UC8151::read(uint8_t reg, size_t len, uint8_t *data) {
@@ -534,7 +534,7 @@ namespace pimoroni {
534534

535535
void UC8151::off() {
536536
busy_wait();
537-
command(POF); // turn off
537+
//command(POF); // turn off
538538
}
539539

540540
}

0 commit comments

Comments
 (0)