diff options
| author | Limor "Ladyada" Fried <limor@ladyada.net> | 2020-03-06 18:10:47 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-06 18:10:47 -0500 |
| commit | 83d5da95b7d2555466dfe24c292ce9b2b7e5b597 (patch) | |
| tree | 7f8e8cc690e179fa1c790e89ddbedf4f103a34ab | |
| parent | 4fa90261a37f0f729b52289cf54492ec7108e16b (diff) | |
| parent | 125409fe95089c5856e4b9e5245c4fc23192e77e (diff) | |
Merge pull request #2684 from caternuson/doc_add_sensors
Add proximity and sound_level to Design Guide
| -rw-r--r-- | docs/design_guide.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/design_guide.rst b/docs/design_guide.rst index 5d965f907..6f87ecf79 100644 --- a/docs/design_guide.rst +++ b/docs/design_guide.rst @@ -476,6 +476,8 @@ properties. +-----------------------+-----------------------+-------------------------------------------------------------------------+ | ``distance`` | float | centimeters | +-----------------------+-----------------------+-------------------------------------------------------------------------+ +| ``proximity`` | int | non-unit-specifc proximity values (monotonic but not actual distance) | ++-----------------------+-----------------------+-------------------------------------------------------------------------+ | ``light`` | float | non-unit-specific light levels (should be monotonic but is not lux) | +-----------------------+-----------------------+-------------------------------------------------------------------------+ | ``lux`` | float | SI lux | @@ -504,6 +506,8 @@ properties. +-----------------------+-----------------------+-------------------------------------------------------------------------+ | ``weight`` | float | grams (g) | +-----------------------+-----------------------+-------------------------------------------------------------------------+ +| ``sound_level`` | float | non-unit-specific sound level (monotonic but not actual decibels) | ++-----------------------+-----------------------+-------------------------------------------------------------------------+ Adding native modules -------------------------------------------------------------------------------- |
