/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

wiresareobsolete.com
| | andybrown.me.uk
17.8 parsecs away

Travel
| | I'm a subscriber to ST's regular email newsletter and though most of it isn't interesting to me I did notice that in one of the recent editions they were promoting their wireless range of STM32-bas...
| | electronut.in
13.7 parsecs away

Travel
| | In this project, we're going to build a BLE Beacon that transmits temperature, humidity and ambient light levels to a dashboard on the...Read More
| | www.stdin.co.uk
17.4 parsecs away

Travel
| | I'm pretty happy with my SensorPush outdoor temperature/humidity/pressure sensor. It's not cheap but it is calibrated to work in a Canadian winter (most of it, at least). Their BLE adverts are automatically detected by HomeAssistant and decoded. Sometimes it appears to have a bit of a nap, adverts stop arriving (and I've checked with other BLE receivers) until the Android app wakes it up, probably the direct Bluetooth connection is all it wants. Also, the battery voltage doesn't appear to be broadcast. S...
| | tmandry.gitlab.io
63.0 parsecs away

Travel
| For just about as long as I've been working on async Rust, the topic of scoped tasks has come up. These areasync tasks that borrow from their environment, and they would come in handy in a lot of situations. Last year the standard library stabilized thread::scope which allows synchronous threads to do this. You could imagine a similar API, but with async: asyncfn fanout(data: &Vec){task::scope(|s|{// Spawn subtasks to run in parallel.