From 6a5601d012d15f3dbc445d8e97297233d9489ce8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Ondreji=C4=8Dka?= <ondrejickam@infotech.sk> Date: Tue, 31 Aug 2021 15:31:16 +0000 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2b07b65..70e8c87 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ ConnectionOptions connectionOptions = optionsBuilder DevkitConnectorV3 devkitConnector = (DevkitConnectorV3) DevkitFactory.CreateDevkitConnector(connectionOptions); ``` Through the `DevkitConnectorV3` object are accessible all the functions implemented in tDevkit. As of **V3**, Most of the functionality is ready to be used after specifying the Api Key in `ConnectionOptions` object. However, there is a small number of functions you need to be authenticated for due to their nature. These functions are mentioned in the -[Full list of functions](#full-list-of-functions-v3). +[Full list of functions](#full-list-of-functions) section. ### Examples Below are a few examples with dummy data. @@ -205,7 +205,7 @@ await devkitConnector.AddSensorData(sensorContracts); * `GetLayer(id)` - Get layer by ID * **Localization** * `AddLocalizationData(deviceLocationContract)` - Add localization data for multiple devices in batch mode - * `AddLocalizationData(locationContract)` - Add localization data for single device (in order to do this you need to be **authenticated** as said device - this can be avoided when using the batch mode above: [Localization](#localization-v3)) + * `AddLocalizationData(locationContract)` - Add localization data for single device (in order to do this you need to be **authenticated** as said device - this can be avoided when using the batch mode [above](#localization)) * **Sectors** * `GetSectors()` - Get all sectors * `GetSector(id)` - Get sector by ID @@ -220,7 +220,7 @@ await devkitConnector.AddSensorData(sensorContracts); * `UpdateSensor(sensorContract)` - Update an existing sensor with new properties * `DeleteSensor(id)` - Delete an existing sensor by ID * `AddSensorData(sensors)` - Add sensor data for multiple sensors in batch mode - * `AddSensorData(sensorData)` - Add sensor data for single sensor (in order to do this you need to be **authenticated** as said sensor - this can be avoided when using the batch mode above: [Sensor Data](#sensor-data-v3)) + * `AddSensorData(sensorData)` - Add sensor data for single sensor (in order to do this you need to be **authenticated** as said sensor - this can be avoided when using the batch mode [above](#sensor-data)) * `GetSensorAppInfo()` - Get information (version, size) about the sensor app * **Shifts** * `GetShifts()` - Get all shifts -- GitLab