Skip to content

Commit

Permalink
Merge pull request #1020 from pimoroni/patch-misc
Browse files Browse the repository at this point in the history
A roundup of not necessarily related fixes from other branches
  • Loading branch information
Gadgetoid authored Oct 25, 2024
2 parents 6ac9bc0 + 2b25e79 commit c2418ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/micropython.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
uses: actions/checkout@v4
with:
repository: gadgetoid/py_decl
ref: v0.0.1
ref: v0.0.4
path: py_decl

- name: Build MPY Cross
Expand Down
4 changes: 2 additions & 2 deletions drivers/uc8151/uc8151.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ namespace pimoroni {
}

void UC8151::power_off() {
command(POF);
//command(POF);
}

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

void UC8151::off() {
busy_wait();
command(POF); // turn off
//command(POF); // turn off
}

}

0 comments on commit c2418ee

Please sign in to comment.