Results 101 comments of Sebastian Urban

> What about a command line option to exit the program after a specific time? Yes, a timeout option seems reasonable, although not strictly necessary since people can just send...

I would prefer the other way. Just tell the user "Press CTRL+C to stop advertising" and listen for SIGINT and SIGTERM. This will make it easy both for scripts and...

I think we can assume a certain level of UNIX proficiency of our users, including process management.

> I think the Bluer command line tools are a fantastic way for people who have an idea they want to implement, for example that requires wireless and a Raspberry...

See https://plplot.sourceforge.net/docbook-manual/plplot-html-5.15.0/devices.html, although this will involve some form of native interop.

https://github.com/surban/openemc/blob/master/openemc-firmware/src/i2c_slave.rs and maybe https://github.com/surban/openemc/blob/master/openemc-firmware/src/i2c_reg_slave.rs Let me know if this is useful. If so, I will open a PR.

Yes, a central can handle multiple peripherals. There is no limit or special attention required. You are probably looking for `tokio::select!` to poll over multiple event sources at once. This...

What method do you use to set the connection interval?

Given the path it seems to be a debug-only setting. @Vudentz Do you know a supported method to achieve the same result? Does it make sense to extend the Bluetooth...

Although I like the idea of adding a HCI interface to BlueR, I don't think that it is the right solution to this particular problem. You will run into permission...