├── .github ├── Contributing.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── semantic.yml ├── .gitignore ├── .golangci.yml ├── Attribution.txt ├── CHANGELOG.md ├── Dockerfile ├── GOVERNANCE.md ├── Jenkinsfile ├── LICENSE ├── Makefile ├── OWNERS.md ├── Readme.md ├── bin └── test-attribution.sh ├── cmd ├── main.go └── res │ ├── configuration.toml │ ├── devices │ └── camera.toml │ └── profiles │ ├── camera-axis.yaml │ ├── camera-bosch.yaml │ └── camera.yaml ├── go.mod ├── go.sum ├── internal ├── driver │ ├── config.go │ ├── constants.go │ ├── driver.go │ ├── driver_test.go │ └── onvifclient.go └── pkg │ ├── axis │ └── vapix.go │ ├── bosch │ └── rcp.go │ ├── client │ └── client.go │ ├── digest │ └── dclient.go │ └── noop │ └── client.go ├── run.sh ├── snap ├── README.md ├── hooks │ └── pre-refresh ├── local │ ├── .gitkeep │ ├── hooks │ │ ├── Makefile │ │ ├── cmd │ │ │ ├── configure │ │ │ │ └── configure.go │ │ │ └── install │ │ │ │ └── install.go │ │ ├── const.go │ │ ├── go.mod │ │ └── go.sum │ └── runtime-helpers │ │ └── bin │ │ └── startup-env-var.sh └── snapcraft.yaml └── version.go /.github/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/.github/Contributing.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/.golangci.yml -------------------------------------------------------------------------------- /Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/Attribution.txt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/Dockerfile -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/OWNERS.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/Readme.md -------------------------------------------------------------------------------- /bin/test-attribution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/bin/test-attribution.sh -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/cmd/main.go -------------------------------------------------------------------------------- /cmd/res/configuration.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/cmd/res/configuration.toml -------------------------------------------------------------------------------- /cmd/res/devices/camera.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/cmd/res/devices/camera.toml -------------------------------------------------------------------------------- /cmd/res/profiles/camera-axis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/cmd/res/profiles/camera-axis.yaml -------------------------------------------------------------------------------- /cmd/res/profiles/camera-bosch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/cmd/res/profiles/camera-bosch.yaml -------------------------------------------------------------------------------- /cmd/res/profiles/camera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/cmd/res/profiles/camera.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/go.sum -------------------------------------------------------------------------------- /internal/driver/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/internal/driver/config.go -------------------------------------------------------------------------------- /internal/driver/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/internal/driver/constants.go -------------------------------------------------------------------------------- /internal/driver/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/internal/driver/driver.go -------------------------------------------------------------------------------- /internal/driver/driver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/internal/driver/driver_test.go -------------------------------------------------------------------------------- /internal/driver/onvifclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/internal/driver/onvifclient.go -------------------------------------------------------------------------------- /internal/pkg/axis/vapix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/internal/pkg/axis/vapix.go -------------------------------------------------------------------------------- /internal/pkg/bosch/rcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/internal/pkg/bosch/rcp.go -------------------------------------------------------------------------------- /internal/pkg/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/internal/pkg/client/client.go -------------------------------------------------------------------------------- /internal/pkg/digest/dclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/internal/pkg/digest/dclient.go -------------------------------------------------------------------------------- /internal/pkg/noop/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/internal/pkg/noop/client.go -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/run.sh -------------------------------------------------------------------------------- /snap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/snap/README.md -------------------------------------------------------------------------------- /snap/hooks/pre-refresh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/snap/hooks/pre-refresh -------------------------------------------------------------------------------- /snap/local/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snap/local/hooks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/snap/local/hooks/Makefile -------------------------------------------------------------------------------- /snap/local/hooks/cmd/configure/configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/snap/local/hooks/cmd/configure/configure.go -------------------------------------------------------------------------------- /snap/local/hooks/cmd/install/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/snap/local/hooks/cmd/install/install.go -------------------------------------------------------------------------------- /snap/local/hooks/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/snap/local/hooks/const.go -------------------------------------------------------------------------------- /snap/local/hooks/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/snap/local/hooks/go.mod -------------------------------------------------------------------------------- /snap/local/hooks/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/snap/local/hooks/go.sum -------------------------------------------------------------------------------- /snap/local/runtime-helpers/bin/startup-env-var.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/snap/local/runtime-helpers/bin/startup-env-var.sh -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgexfoundry/device-camera-go/HEAD/version.go --------------------------------------------------------------------------------