-
Notifications
You must be signed in to change notification settings - Fork 54
Description
Is your feature request related to a problem? Please describe.
V1 of WipperSnapper has no support for the vector sensor types in Adafruit Sensor, although the event type is in theory part of the spec. This means the following cannot be supported currently:
wippersnapper_i2c_v1_SensorType_SENSOR_TYPE_ACCELEROMETER = 1,
wippersnapper_i2c_v1_SensorType_SENSOR_TYPE_MAGNETIC_FIELD = 2,
wippersnapper_i2c_v1_SensorType_SENSOR_TYPE_ORIENTATION = 3,
wippersnapper_i2c_v1_SensorType_SENSOR_TYPE_GYROSCOPE = 4,
Describe the solution you'd like
Add vector support to the protobuf
Describe alternatives you've considered
The current offering is to mash the data together to a single value with no direction.
Additional context
This affects a bunch of components that could otherwise be added, but to be fair within a matter of a few months v2 should be ready to support those components, and already includes vectors.
Maybe I should try adding the blocked components to v2, to ensure the protobuf suites our needs, as offline-mode is using it as a testbed.