Quantity Available: 57
Qty | Price |
---|---|
5 | $28.50 |
10 | $27.00 |
25 | $24.00 |
50 | $21.00 |
100 | $19.50 |
250 | $18.00 |
500 | $16.50 |
1000 | $15.00 |
The MOT1101 combines an accelerometer, gyroscope, and magnetometer. You can use the data from each of these sensors separately or combine them to track the movement and direction of a robot or vehicle, or to detect movement, tilt or vibration of an object. This Phidget connects to your computer through a VINT Hub.
This Phidget is a smart device that must be controlled by a VINT Hub. For more information about VINT, have a look at the VINT Primer. You can use a Phidget Cable to simply and easily connect the two devices. Here's a list of all of the different VINT Hubs currently available:
Product | Board | |||
---|---|---|---|---|
Image | Part Number | Price | Number of VINT Ports | Controlled By |
![]() |
HUB0000_0 | $30.00 | 6 | USB (Mini-USB) |
![]() |
HUB5000_0 | $60.00 | 6 | Local Network (Ethernet or Wi-Fi) |
![]() |
SBC3003_0 | $120.00 | 6 | — |
Use a Phidget cable to connect this device to the hub. You can solder multiple cables together in order to make even longer Phidget cables, but you should be aware of the effects of having long wires in your system.
Welcome to the MOT1101 user guide! In order to get started, make sure you have the following hardware on hand:
Next, you will need to connect the pieces:
In order to demonstrate the functionality of the MOT1101, the Phidget Control Panel running on a Windows machine will be used.
The Phidget Control Panel is available for use on both macOS and Windows machines.
To open the Phidget Control Panel on Windows, find the icon in the taskbar. If it is not there, open up the start menu and search for Phidget Control Panel
To open the Phidget Control Panel on macOS, open Finder and navigate to the Phidget Control Panel in the Applications list. Double click on the icon to bring up the Phidget Control Panel.
For more information, take a look at the getting started guide for your operating system:
Linux users can follow the getting started with Linux guide and continue reading here for more information about the MOT1101.
After plugging the MOT1101 into your computer and opening the Phidget Control Panel, you will see something like this:
The Phidget Control Panel will list all connected Phidgets and associated objects, as well as the following information:
The Phidget Control Panel can also be used to test your device. Double-clicking on an object will open an example.
The MOT1101 combines an accelerometer (±8g), gyroscope (± 2000°/s), and magnetometer (± 8 G). Each sensor measures in the x, y, and z-axis. You can also use the Spatial object to obtain data from all three sensors, synchronized to the same timestamp.
You can use your Control Panel to explore your Phidget's channels.
1. Open your Control Panel, and you will find the following channels:
2. Double click on a channel to open an example program. Each channel belongs to a different channel class:
In your Control Panel, double click on "Accelerometer":
In your Control Panel, double click on "Gyroscope":
In your Control Panel, double click on "Magnetometer":
In your Control Panel, double click on "Spatial":
1. Setting up your Programming Environment
Before you open a Phidget channel in your program, you can set these properties to specify which channel to open. You can find this information through the Control Panel.
1. Open the Control Panel and double-click on the red map pin icon:
2. The Addressing Information window will open. Here you will find all the information you need to address your Phidget in your program.
See the Phidget22 API for your language to determine exact syntax for each property.
In the Phidget Control Panel, open the channel for your device and click on the icon next to the data type that you want to plot. This will open up a new window:
If you need more complex functionality such as logging multiple sensors to the same sheet or performing calculations on the data, you'll need to write your own program. Generally this will involve addressing the correct channel, opening it, and then creating an Event Handler and adding graphing/logging code to it.
The quickest way to get started is to download some sample code for your desired programming language and then search google for logging or plotting in that language (e.g. "how to log to csv in python") and add the code to the existing change handler.
The Change Trigger is the minimum change in the sensor data needed to trigger a new data event. The Data Interval is the time (in ms) between data events sent out from your Phidget. You can modify one or both of these values to achieve different data outputs. You can learn more about these two properties here.
In order to get numbers of useful accuracy from the MOT1101's compass you will need to provide calibration parameters. To make determining them easy, we distribute a program with our drivers that does this for you.
To calibrate your compass:
setCompassCorrectionParameters(0.51075, 0.18820, -0.07456, -0.02209, 1.87163, 1.87640, 2.12565, -0.04000, -0.04084, -0.03552, 0.09073, -0.04258, 0.11056);
Board Properties | |
---|---|
Controlled By | VINT |
Accelerometer | |
Acceleration Measurement Max | ± 8 g |
Acceleration Measurement Resolution | 1 mg |
Accelerometer Noise | ± 5 mg |
Sampling Interval Max | 60 s/sample |
Sampling Interval Min | 20 ms/sample |
Gyroscope | |
Gyroscope Speed Max | ± 2000°/s |
Gyroscope Resolution | * 0.07°/s |
Gyroscope Noise | ± 0.5°/s |
Sampling Interval Max | 60 s/sample |
Sampling Interval Min | 20 ms/sample |
Magnetometer | |
Magnetic Field Max | ± 8 G |
Magnetometer Resolution | 300 μG |
Magnetometer Noise | ± 7.5 mG |
Sampling Interval Max | 60 s/sample |
Sampling Interval Min | 20 ms/sample |
Electrical Properties | |
Current Consumption Max | ** 11.5 mA |
Current Consumption Min | 155 μA |
Physical Properties | |
Operating Temperature Min | -30 °C |
Operating Temperature Max | 85 °C |
Customs Information | |
Canadian HS Export Code | 8471.80.00 |
American HTS Import Code | 8471.80.40.00 |
Country of Origin | CN (China) |
* - Gyroscope resolution varies with angular rate. See the table below for details.
Angular Rate (°/s) | Resolution (°/s) |
---|---|
0 - 250 | 0.00875 |
251 - 500 | 0.0175 |
501 - 2000 | 0.07 |
** - Current consumption varies depending on selected data interval. See the graph below for details.
Date | Board Revision | Device Version | Comment |
---|---|---|---|
January 2018 | 0 | 112 | Product Release |
January 2018 | 0 | 113 | Fixed issue occurring when DataInterval is set before Enable |
Channel Name | API | Channel |
---|---|---|
3-Axis Accelerometer | Accelerometer | 0 |
3-Axis Gyroscope | Gyroscope | 0 |
3-Axis Magnetometer | Magnetometer | 0 |
Spatial | Spatial | 0 |
API | Detail | Language | OS | |
---|---|---|---|---|
Accelerometer | Visual Studio GUI | C# | Windows | Download |
Accelerometer | Java | Android | Download | |
Accelerometer | JavaScript | Browser | Download | |
Accelerometer | Objective-C | macOS | Download | |
Accelerometer | Swift | macOS | Download | |
Accelerometer | Swift | iOS | Download | |
Accelerometer | Visual Basic .NET | Windows | Download | |
Accelerometer | Max/MSP | Multiple | Download | |
Gyroscope | Visual Studio GUI | C# | Windows | Download |
Gyroscope | Java | Android | Download | |
Gyroscope | JavaScript | Browser | Download | |
Gyroscope | Objective-C | macOS | Download | |
Gyroscope | Swift | macOS | Download | |
Gyroscope | Swift | iOS | Download | |
Gyroscope | Visual Basic .NET | Windows | Download | |
Gyroscope | Max/MSP | Multiple | Download | |
Magnetometer | Visual Studio GUI | C# | Windows | Download |
Magnetometer | Java | Android | Download | |
Magnetometer | JavaScript | Browser | Download | |
Magnetometer | Objective-C | macOS | Download | |
Magnetometer | Swift | macOS | Download | |
Magnetometer | Swift | iOS | Download | |
Magnetometer | Visual Basic .NET | Windows | Download | |
Magnetometer | Max/MSP | Multiple | Download | |
Spatial | Compass Calibrator | C | Multiple | Download |
Spatial | Visual Studio GUI | C# | Windows | Download |
Spatial | Compass Calibrator | C# | Windows | Download |
Spatial | Spatial AHRS/IMU | C# | Windows | Download |
Spatial | Java | Android | Download | |
Spatial | JavaScript | Browser | Download | |
Spatial | Objective-C | macOS | Download | |
Spatial | Swift | macOS | Download | |
Spatial | Swift | iOS | Download | |
Spatial | Visual Basic .NET | Windows | Download | |
Spatial | Max/MSP | Multiple | Download |
Product | Accelerometer | Gyroscope | Magnetometer | |||||
---|---|---|---|---|---|---|---|---|
Image | Part Number | Price | Acceleration Measurement Max | Acceleration Measurement Resolution | Gyroscope Speed Max | Gyroscope Resolution | Magnetometer Resolution | Magnetic Field Max |
![]() |
1041_0B | $40.00 | ± 8 g | 976.7 μg | — | — | — | — |
![]() |
1042_0B | $60.00 | ± 8 g | 976.7 μg | ± 2000°/s | 0.07°/s | 3 mG | 5.5 G |
![]() |
1043_1B | $80.00 | ± 2 g | 76.3 μg | — | — | — | — |
![]() |
1044_1B | $120.00 | ± 2.5 g | 76 μg | — | — | 1.5 mG | ± 49.2 G |
![]() |
MOT1100_0 | $20.00 | ± 8 g | 1 mg | — | — | — | — |
![]() |
MOT1101_0 | $30.00 | ± 8 g | 1 mg | ± 2000°/s | * 0.07°/s | 300 μG | ± 8 G |