Synexsis-Camera-Testbed

This repository contains a simple application to test cameras using the Synexsis camera module.


Project maintained by normschaeffer Hosted on GitHub Pages — Theme by mattgraham

Enkadia Synexsis Camera Test Platform - Windows UWP

A simple application to test cameras using the Synexsis camera module.

Devices and software used for this project:

Synexsis NuGet packages used - Available at the NuGet Repository (search Enkadia and check prerelease)

Additional Microsoft NuGet packages used

Windows Target environments

NOTE THIS TEST PLATFORM REQUIRES THE USE OF AN ENKADIA TEST LICENSE. TO REQUEST A LICENSE PLEASE SEE enkadia.com


Configuring your components

Synexsis builds your components by reading values from an appsettings.json file, located at the root of your program’s runtime directory. Place your Synexsis Test License in the same folder.

Place the appsettings.json file and license key in this folder.
This is an example for a release version running on a Raspberry Pi:

   ApplicationName\bin\ARM\Release\AppX

Troubleshooting

If the application fails to start, verify the license and appsettings.json files are in the correct folder.


Creating the appsettings.json file

This sample appsettings file demonstrates the configuration information needed to support a Vaddio Roboshot camera.

Sample appsettings.json

{
    "RoboshotCamera": {
		"IPAddress": "192.168.1.200",
		"Port": 23,
		"Username": "admin",
                "Password": "password"
	},
	"License": {
		"OfflineActivation": "true",
		"LicenseFileName": "MyLicense.skm"
	}
}