mikkeldamsgaard

Results 10 comments of mikkeldamsgaard

You need to make sure that the length of the argument to encoder.encode() is a multiple of 2.5ms. Since you are encoding with 16000 and two channels (!) that would...

I am currently giving the ble server/peripheral some attention. The idea is to let the user build a service descriptor with toit objects to be passed to the server constructor....

Caveat: I am not a skilled GO programmer, so handle this PR with the care.

The peripheral role is the computer acting as a remote device that others can connect to (or itself can connect to). In BLE terms it is often referred to as...

That would make it advertise and connectable. You also need to handle read and writes of characteristics.

Still missing security. The rest is done.

Security finally added in https://github.com/toitlang/toit/pull/1470. @kasperl please update when approved.

@floitsch @dumblob The ESP32 has two ADC's that are supported by toit already and the flash is also supported. The issue will be to get a constant sample rate, as...

The $2 in the awk argument should be escaped, as slash is trying to substitute. ```awk '{print \$2}'```

That said, I dont think I ever implemented the running in background part.