Sawyer McLane

Results 8 issues of Sawyer McLane

[Whitepaper](https://www.maximintegrated.com/en/products/power/display-power-control/MAX7219.html) Can use `maxSingle(row byte, col byte)` to write to the internal registers of the `max`, lighting up LEDs in row `row` with the bit-string `col`. Currently doesn't support daisy-chaining,...

**Is your feature request related to a problem? Please describe.** There's no "granular" way to change the scale values. **Describe the solution you'd like** Change to an `Entry` field, so...

enhancement

* Fixed misspelling of 'exists' * Fixed some grammar * Added missing import for `abort()` in routes.py * Updated formatting of some code for readability

I have an app that has a slider, allowing users to control `Group` brightness at a fine-grain level. This function sends many `set_power` and `set_color` commands to communicate with the...

Currently, a different random seed is passed every time the Test Suite is run. This leaves room for some edge cases which cause the tests to fail (ex: all `Actors`...

bug

When working on the `WorldFrame` where I inherit from `QGraphicsView` to display a `QGraphicsObject` (`WorldView`). I have already implemented the image zoom functionality from [this post][1], and I have tried...

help wanted

I'm having trouble getting certain strings to attach that are inside non-default-keyword member functions. My code has a level of encapsulation to it, where I sometimes store the `gettext` function...

enhancement
area/messages

Writing a small code viewer, I used to use the functions: ```python text_entry.tag_configure("Keyword", foreground=monokai.blue) text_entry.tag_configure("String", foreground=monokai.green) text_entry.tag_configure("Comment", foreground=monokai.comments) ``` However CtkTextbox/CtkEntry doesn't have these functions. Is there a way for...