Results 228 comments of Andrew Mackenzie

I see [last release](https://github.com/golemparts/rppal/releases/tag/0.18.0) was on May 18th, before these changes right? I'm ready to migrate to try this new code for our app. Are you planning to do a...

OK, I'll check it out. I was passing on the timestamp to a remote node as a UTC time of when the event happened, so will see what changes that...

> ``` > cargo install --git https://github.com/konkers/probe-rs --branch wip/2350 probe-rs-tools --locked > ``` > > works like a charm. ty ithinuel, konkers and others! Is that work, or others mentioned,...

Thanks for responding. Wow! That's a lot of work to go from Pico to Pico 2 eh, who would have thought it. Thanks and appreciation to the folks doing all...

I think still no published release including this change?

crates.io has 0.3.7 as the latest release: https://crates.io/crates/plotters uploaded on September 8th. Pr was merged on July 1st https://github.com/plotters-rs/plotters/pull/604 my project resolves 0.3 to 0.3.7 as would be expected https://github.com/andrewdavidmackenzie/pigg/blob/master/Cargo.lock#L4397...

I'd have to create an app that has only that....

I was taking a look at the menu example. I see none of the "leaf nodes" do any action that closes any of the menus. Changing that would (IMHO) make...

I wonder if it is related to our use of a "fake" Message in menu clicks, such as [this](https://github.com/andrewdavidmackenzie/pigg/blob/master/src/views/hardware_menu.rs#L298): ``` Item::with_menu( button(text(model)) .on_press(Message::MenuBarButtonClicked) // Needed for highlighting .style(move |_theme, status|...