Skip to content
Snippets Groups Projects
Commit 4eecc321 authored by Dennis Eisold's avatar Dennis Eisold
Browse files

Merge branch 'master' into 'master'

# Conflicts:
#   Wetterstation/Form1.Designer.cs
parents 26fdf736 c0f56b72
Branches master
No related tags found
No related merge requests found
......@@ -1153,6 +1153,7 @@ namespace Wetterstation
this.lbLuftFeuchtInnen.TabIndex = 115;
this.lbLuftFeuchtInnen.Text = "---";
this.lbLuftFeuchtInnen.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.lbLuftFeuchtInnen.Click += new System.EventHandler(this.LbLuftFeuchtInnen_Click);
//
// lbWindSpeed
//
......
......@@ -508,5 +508,10 @@ namespace Wetterstation
this.myClient.Disconnect();
Application.Exit();
}
private void LbLuftFeuchtInnen_Click(object sender, EventArgs e)
{
}
}
}
namespace Wetterstation
{
//Klasse fuer die Datenbankeintraege
public class SettingsModel
{
public string mqtt_host { get; set; }
......
......@@ -6,6 +6,7 @@ using System.Linq;
namespace Wetterstation
{
//Hier werden die Datenbankzugriffe fuer die frontend.db geregelt
public static class SqliteDataAccess
{
public static SQLiteConnection _dbConnection;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment