Bilder können jetzt hinterlegt werden

This commit is contained in:
Husky
2018-07-01 16:28:13 +02:00
parent 88af76b01f
commit 78ccc768df
11 changed files with 468 additions and 20 deletions

View File

@@ -10,6 +10,7 @@ using System.Windows.Forms;
using KlassenBIB;
using System.Diagnostics;
using System.IO;
using SanShared;
namespace SanSystem
{
@@ -102,5 +103,16 @@ namespace SanSystem
{
destinationPath = inliner.CheckVerzeichnisse(Global.Instance.projektpfad);
}
private void btn_get_temp_Click(object sender, EventArgs e)
{
ITemperature temperature = TempCAN.TemperaturBuilder.Temperatur(TempCAN.TemperaturSchnittstellen.TINKERFORGE);
double temperatur = temperature.GetTemperatur();
inliner.TempAusen = temperatur;
txt_temp_aussen.Update();
}
}
}