29 lines
715 B
C#
29 lines
715 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Thermo.Active.Config
|
|
{
|
|
/// <summary>
|
|
/// Live data for Thermo Active
|
|
/// </summary>
|
|
public class LiveData
|
|
{
|
|
/// <summary>
|
|
/// Current loaded recipe
|
|
/// </summary>
|
|
public string RecipeName = "current.json";
|
|
/// <summary>
|
|
/// Dictionary of all parameters and values
|
|
/// </summary>
|
|
public Dictionary<string, double> RecipeParameters;
|
|
/// <summary>
|
|
/// Dictionary of all channels and relative setpoints
|
|
/// </summary>
|
|
public Dictionary<int, int> ChannelSetpoints;
|
|
|
|
}
|
|
}
|