UI_SequentMicrosystems-RPI/Pages/Start.razor

38 lines
932 B
Plaintext
Raw Permalink Normal View History

2023-12-16 07:59:53 +00:00
@page "/"
@using UI_SequentMicrosystems.Services
@inject NavigationManager Navigator
2024-01-17 05:34:15 +00:00
@inject SyncService _SyncService
2023-12-16 07:59:53 +00:00
<PageTitle>Welcome</PageTitle>
<div class="text-center row">
2024-01-17 05:34:15 +00:00
<div class="h6 col-3">TesDevice App V1.2</div>
<div class="col">Added Clients Synchronization</div>
</div>
<div class="text-center row">
<div class="h6 col-3">TesDevice App V1.1</div>
<div class="col">Added Automatic points Saving, Calibration and Calculating RTDCard values change in last 3O minutes in saved points</div>
</div>
<div class="text-center row">
2024-01-13 07:00:42 +00:00
<div class="h6 col-3">TesDevice App V1.O</div>
2024-01-17 05:34:15 +00:00
<div class="col">First Fully function Build --> Reading RTD cards, RTD Graph, Points Saving and exporting as csv</div>
</div>
2023-12-16 07:59:53 +00:00
@code{
protected override void OnInitialized()
{
//_RTD8TMService.SetAddress("http://10.250.251.131/");
2024-01-17 05:34:15 +00:00
_SyncService.SetAddress(Navigator.BaseUri);
2023-12-16 07:59:53 +00:00
}
}