Merge pull request #285 from MichaelBell/badger2040-fixes

Make USB powered and battery powered Badger2040 work the same
pull/288/head
Philip Howard 2022-03-10 08:50:07 +00:00 zatwierdzone przez GitHub
commit 36c1b469b1
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
3 zmienionych plików z 17 dodań i 6 usunięć

Wyświetl plik

@ -24,8 +24,11 @@ options = parser.parse_args()
def convert_image(img):
if options.resize:
img = img.resize((296, 128)) # resize
enhancer = ImageEnhance.Contrast(img)
img = enhancer.enhance(2.0)
try:
enhancer = ImageEnhance.Contrast(img)
img = enhancer.enhance(2.0)
except ValueError:
pass
img = img.convert("1") # convert to black and white
return img

Wyświetl plik

@ -2,6 +2,7 @@
#include <math.h>
#include "hardware/pwm.h"
#include "hardware/watchdog.h"
#include "badger2040.hpp"
@ -79,8 +80,15 @@ namespace pimoroni {
void Badger2040::halt() {
gpio_put(ENABLE_3V3, 0);
// don't allow any more code to execute while power rail drops
while(true) {}
// If running on USB we will not actually power down, so emulate the behaviour
// of battery powered badge by listening for a button press and then resetting
// Note: Don't use wait_for_press as that waits for the button to be release and
// we want the reboot to complete before the button is released.
update_button_states();
while(_button_states == 0) {
update_button_states();
}
watchdog_reboot(0, 0, 0);
}
uint8_t _dither_value(int32_t x, int32_t y, uint8_t p) {

Wyświetl plik

@ -9,7 +9,7 @@
namespace pimoroni {
class Badger2040 {
private:
protected:
UC8151 uc8151;
const hershey_font_t *_font = &futural;
uint8_t _pen = 0;
@ -96,4 +96,4 @@ namespace pimoroni {
};
}
}