The SENSUS software suite is divided into two sections:
- The SENSUS Viewer is a cross-platform GUI application for rapid evaluation of the PULSE sensor, providing real-time processing and viewing of the sensor data, helping you get started with the sensor.
- The SENSUS software development kit (SDK) is a collection of libraries, tools and examples to aid development with the PULSE sensor.
SENSUS Viewer Installation #
The SENSUS Viewer supports the following operating systems. You can download the latest version for your platform using the links below.
Please follow the specific installation instructions for your operating system to ensure a smooth setup process.
WINDOWS | MACOS | UBUNTU LTS |
---|---|---|
Windows Installation Instructions
- Download the Windows โคค build of SENSUS Viewer
- Unzip the downloaded folder to a convenient location on your computer
- Connect your PULSE sensor to your computer using the provided USB Type-C cable
- Launch SENSUS Viewer by double-clicking the
CalyoSensus.exe
file in the unzipped folder - Get Started by reviewing the SENSUS Viewer documentation, which provides helpful tips and guides to familiarise you with the software
macOS Installation Instructions
- Download the macOS โคค build of SENSUS Viewer
- Unzip the downloaded folder to a location of your choice
- Connect your PULSE sensor to your Mac using the provided USB Type-C cable
- Open Terminal and navigate to the SENSUS Viewer folder by entering:
cd Downloads/SENSUSViewerMacOS/
(Adjust the path if your folder is located elsewhere) - Launch SENSUS Viewer by running the following command:
./CalyoSensus
- Get Started by reviewing the SENSUS Viewer documentation for guidance on using the software
Linux Installation Instructions
- Download the Linux โคค build of SENSUS Viewer
- Unzip the downloaded folder
- Open Terminal and navigate to the SENSUS Viewer folder. For example:
cd Downloads/SENSUSViewerLinux/
- Add Execute Permission to the application by running:
chmod +x CalyoSensus
- Configure udev Rules (this is required only once unless you reinstall or modify your OS):
- Open Terminal and navigate to the
rules.d
directory:cd /etc/udev/rules.d
- Create a new rule file:
bash sudo touch 99-ftdi.rules
- Open the file in a text editor, and paste the following line:
SUBSYSTEMS=="usb",ATTRS{idProduct}=="6014",ATTRS{idVendor}=="0403",GROUP="plugdev",MODE="666"
- Save and close the file
- Reload the udev rules:
sudo udevadm trigger
- Open Terminal and navigate to the
- Connect Your PULSE Sensor using the provided USB Type-C cable
- Prepare the Environment for Device Drivers by running:
sudo rmmod ftdi_sio
๐ Note: This command should be run each time the sensor is connected to the computer. It enables data acquisition from the sensor. - Launch SENSUS Viewer by running:
./CalyoSensus
(Ensure youโre still in the<Your Download Location>/SENSUSViewerLinux/
directory) - Get Started by reviewing the SENSUS Viewer documentation for further setup and usage instructions
SENSUS SDK Installation #
The SENSUS SDK supports the following operating systems. You can download the latest version for each platform from here.
๐ Note: These platforms are officially supported, but the SENSUS software is highly portable and may work on other systems. If you need support for a platform not listed, please reach out to us for assistance.
UBUNTU LTS | NVIDIAยฎ JETSON |
---|---|
What do you get in the SENSUS SDK?
Your SDK download will contain the following tools and examples.
.
โโโ calyosensus_sdk/
โโโ bin/
โโโ include/
โโโ lib/
โโโ tests/
โโโ minimal_cpp_example/
โโโ calyosensusros2/
โโโ calyoFoxgloveTools/
The first folders contain the pre-complied libraries and executables; you can read more information about these in the SDK Overview document.
.
โโโ calyosensus_sdk/
โโโ bin/
โ โโโ Linux/
โ โโโ amd64/
โ โ โโโ Driver
โ โ โโโ ...
โ โโโ arm64/
โ โโโ Driver
โ โโโ ...
โโโ include/
โ โโโ ...
โโโ lib/
โ โโโ Linux/
โ โโโ amd64/
โ โ โโโ <compiled libs>
โ โโโ arm64/
โ โโโ <compiled libs>
โโโ tests/
โ โโโ ...
โโโ ...
The rest of the folders have source code examples and the various integrations available with the SENSUS SDK, you can discover more on the Integrations Overview.
.
โโโ calyosensus_sdk/
โโโ <...>
โโโ minimal_cpp_example/
โ โโโ README.md
โ โโโ ...
โโโ calyosensusros2/
โ โโโ README.md
โ โโโ src/
โ โโโ calyosensus_msgs/
โ โ โโโ ...
โ โโโ calyosensus_ros/
โ โโโ ...
โโโ calyoFoxgloveTools/
โโโ ...