-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.json
32 lines (32 loc) · 886 Bytes
/
meta.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"$schema": "https://dl.viam.dev/module.schema.json",
"module_id": "cdp:mock",
"visibility": "public",
"url": "https://github.com/clintpurser/mock",
"description": "A versatile sensor module that allows users to return mocked data in whatever structure they want. In this modules config populate a \"mock_data\" key with a list of valid json objects and this module will cycle through them as you call getReadings().",
"models": [
{
"api": "rdk:component:sensor",
"model": "cdp:mock:mock-sensor"
}
],
"entrypoint": "dist/main",
"build": {
"build": "./build.sh",
"setup": "./setup.sh",
"path": "dist/archive.tar.gz",
"arch": [
"linux/amd64",
"linux/arm64",
"darwin/arm64"
],
"darwin_deps": [
"go",
"pkg-config",
"nlopt-static",
"x264",
"jpeg-turbo",
"ffmpeg"
]
}
}