mastodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance, open to everyone, but mainly English and French speaking.

Administered by:

Server stats:

819
active users

#microcontrollers

3 posts3 participants0 posts today

Today I successfully got #Rust code working for a #RaspberryPi #PicoW board! Not bad. All credit goes to the toolchains and projects... my efforts here are purely exploratory / discovery. My current status is I got some Pico / Pico W sample code working and then merged some samples together to form a foundation I'll build more code on top of. The merged code achieves:

  1. DHCP to local network
  2. Listen and respond to TCP
  3. Poke a GPIO (blink)
  4. Logging to USB-TTY

The real TL;DR is: The embassy project seems to be the best starting point for Rust on a Pico W. (Not a Pico 2, this is an older RP2040 board.)

The long version is: yvan.seth.id.au/rusty-pico-w.h

Yvan's Posts · Rusty Pico WGetting Rust working for Pi Pico W

#Computers are wonderful... they still surprise me once in a while.

One of my #tasmota devices just stopped answering commands via #mqtt but was happily reporting status back via MQTT.

After a lot of debugging I found that the MQTT topic changed from /cmnd/... to /cmjd/...

j in ASCII is 0x6E or 0b010 1110
n in ASCII is 0x6A or 0b0110 1010

So basically one bit flipped from 0 to 1.

Bit flip? Table flip!
(╯° °)╯︵ ┻━┻

That is my first self-observed obvious bitflip. Hooray!

So I will now configure the MQTT Sender to use cmjd for this device, obviously...