前回までの状況はこちら。
ラズパイにHTTPサーバを実装したので、今回はHTTPクライアントをWindowsに作成します。
以前こちらで作成したのは、HTTPサーバですが、基本的にはこれを流用します。
なので、ソースコードはほとんど似ています。
違いはサーバ処理しているところをクライアント処理しているところぐらいです。
<Window x:Class="IroiroMonitor.Views.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:prism="http://prismlibrary.com/"
prism:ViewModelLocator.AutoWireViewModel="True"
Title="{Binding Title}" Height="350" Width="525">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Label Grid.Row="0" Grid.Column="0" Content="温度" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10" Width="239" Height="86" FontSize="48"/>
<Label Grid.Row="1" Grid.Column="0" Content="湿度" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="48" Margin="10" Width="239" Height="87"/>
<Label Grid.Row="0" Grid.Column="1" Content="{Binding Temperature}" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="48"/>
<Label Grid.Row="1" Grid.Column="1" Content="{Binding Humidity}" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="48"/>
</Grid>
</Window>
namespace IroiroMonitor
{
[JsonObject("sensorModel")]
public class Sensor
{
[JsonProperty("datetime")]
public string datetime { get; set; }
[JsonProperty("temperature")]
public string temperature { get; set; }
[JsonProperty("humidity")]
public string humidity { get; set; }
}
}
namespace IroiroMonitor.ViewModels
{
public class MainWindowViewModel : BindableBase
{
private string _title = "いろいろ計測モニター";
public string Title
{
get { return _title; }
set { SetProperty(ref _title, value); }
}
private double _temperature;
private double _humidity;
public double Temperature
{
get { return _temperature; }
set { SetProperty(ref _temperature, value); }
}
public double Humidity
{
get { return _humidity; }
set { SetProperty(ref _humidity, value); }
}
public MainWindowViewModel()
{
Thread thread = new Thread(new ThreadStart(async () => {
try
{
HttpClient client = new HttpClient();
while (true)
{
HttpResponseMessage response = await client.GetAsync("http://192.168.1.15:8000/");
response.EnsureSuccessStatusCode();
string responseBody = await response.Content.ReadAsStringAsync();
Sensor sensor = JsonConvert.DeserializeObject<Sensor>(responseBody);
double temp = 0;
double hum = 0;
double.TryParse(sensor.temperature,out temp);
double.TryParse(sensor.humidity, out hum);
Temperature = temp;
Humidity = hum;
Thread.Sleep(1000);
}
}
catch (Exception ex)
{
}
}));
thread.Start();
}
}
}