Skip to content

Minor content fixes #608

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 'Build a Multi-Protocol Gateway With Portenta X8 & Max Carrier'
title: 'Multi-Protocol Gateway With Portenta X8 & Max Carrier'
description: 'This tutorial shows how to setup a multi-protocol gateway environment on Portenta X8 using Max Carrier'
tags:
- Containers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ libraries:
- name: Arduino BHY2
url: https://www.github.com/Arduino-libraries/Arduino_BHY2
- name: Arduino BHY2Host
url: https://www.github.com/Arduino-libraries/Arduino_BHY2
url: https://github.com/arduino-libraries/Arduino_BHY2Host
- name: Arduino PDM
url: https://www.arduino.cc/en/Reference/PDM
- name: Arduino SPI
Expand Down Expand Up @@ -197,7 +197,7 @@ In the following section, you can see how these ID's are used in an Arduino sket

### Sensor Classes

- **Sensor**: This class handles all the other sensors which have a single value to be read, like temperature, gas, pressure, etc. And also the event sensors, like the step detector. This generic sensor class provides the sensor data through the `value` property.
- **Sensor**: This class handles all the other sensors which have a single value to be read, like temperature, gas, pressure, etc. And also the event sensors, like the step detector. This generic sensor class provides the sensor data through the `value` property that returns a **float**.
- **SensorOrientation**: This class handles sensors with the Euler format, used for example with orientation. It allows you to read the `pitch`, `roll` and `heading` property.
- **SensorXYZ**: This class handles sensors with the XYZ format, like the accelerometer and the gyroscope. It contains `x` `y` and `z` values
- **SensorQuaternion**: Can be used to handle sensors with the quaternion format, can be used to calculate rotation vector, game rotation vector and geomagnetic rotation vector. You can access the `x`, `y`, `z` and `w` property using this class.
Expand Down