Module for a load cell bridge sensor amplifier
If you clone this repository to the target environment where you run your Viam robot, then you can build a binary named nau7802
with:
go build -o nau7802
Alternatively, if you want to build a binary for a different target environment, please use the viam canon tool.
Copy the binary to the robot (system where viam-server is running) and add the following to your configuration:
...
"modules": [
...,
{
"executable_path": "<path_to_binary>",
"name": "nau7802-module"
},
...,
],
"components": [
...,
{
"name": "",
"type": "sensor",
"model": "viam-labs:sensor:nau7802-module"
},
...,
],
...
For more information on how to configure modular components, see this example.