Nevyn Bengtsson
Nevyn Bengtsson
First off, it would be very helpful to have the kinds of errors that can happen be documented, so you can code defensively for the cases that can fail. There...
since it's deprecated.
I'm setting the metadata for the drag as an additional pasteboard item. This means the data is sent twice to pasteboard, which is a slow and synchronous operation. By subclassing...
For example. you can `lovr.math.mat4(lovr.headset.getPose(...))`, which is not obvious because the documentation doesn't mention an overload of `set()` which takes `x, y, z, a, ax, ay, az`.
I didn't even realize that __mul and friends were implemented until I did it by accident. Now I'm struggling to figure out which operators can be done between which datatypes....
This fixes https://github.com/connornishijima/Cartridge/issues/1 :) Also added a fix for accidentally resetting the pins as sent into the constructor, in case you pick other pins than the defaults.
I'm using AdaFruit's ESP32, HUZZAH32. I've tried both using the four pin channel outputs, and using the DAC on pin A1 in your commented-out code. In both cases, all I...
At: https://www.arduino.cc/reference/en/libraries/arduinoble/bledevice.characteristic/ It would be helpful to mention in the main documentation body for BLEDevice.characteristic() that the API requires you to either BLEDevice.discoverAttributes() or BLEDevice.discoverSerivce() first. It is hinted at...