Set the default value of TelemetryInterval to 15 seconds

It is desired for the scenario driven out-of-box experience
This commit is contained in:
Xiangzhi Sheng 2017-02-22 15:17:17 +08:00
Родитель 84a8f731ca
Коммит 4cdbbdfa20
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -13,7 +13,7 @@ namespace Microsoft.Azure.Devices.Applications.RemoteMonitoring.Simulator.WebJob
private readonly ILogger _logger;
private readonly string _deviceId;
private const uint REPORT_FREQUENCY_IN_SECONDS = 5;
private const uint REPORT_FREQUENCY_IN_SECONDS = 15;
private const uint PEAK_FREQUENCY_IN_SECONDS = 90;
private SampleDataGenerator _temperatureGenerator;