function varargout = PI_Regler(varargin)
%PI_REGLER M-file for PI_Regler.fig
%      PI_REGLER, by itself, creates a new PI_REGLER or raises the existing
%      singleton*.
%
%      H = PI_REGLER returns the handle to a new PI_REGLER or the handle to
%      the existing singleton*.
%
%      PI_REGLER('Property','Value',...) creates a new PI_REGLER using the
%      given property value pairs. Unrecognized properties are passed via
%      varargin to PI_Regler_OpeningFcn.  This calling syntax produces a
%      warning when there is an existing singleton*.
%
%      PI_REGLER('CALLBACK') and PI_REGLER('CALLBACK',hObject,...) call the
%      local function named CALLBACK in PI_REGLER.M with the given input
%      arguments.
%
%      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
%      instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES

% Edit the above text to modify the response to help PI_Regler

% Last Modified by GUIDE v2.5 04-Jun-2015 12:28:18

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @PI_Regler_OpeningFcn, ...
                   'gui_OutputFcn',  @PI_Regler_OutputFcn, ...
                   'gui_LayoutFcn',  [], ...
                   'gui_Callback',   []);
if nargin && ischar(varargin{1})
   gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
    gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT


% --- Executes just before PI_Regler is made visible.
function PI_Regler_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   unrecognized PropertyName/PropertyValue pairs from the
%            command line (see VARARGIN)

% Choose default command line output for PI_Regler
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

% UIWAIT makes PI_Regler wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = PI_Regler_OutputFcn(hObject, eventdata, handles)
% varargout  cell array for returning output args (see VARARGOUT);
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.output;


% --- Executes on button press in run.
function run_Callback(hObject, eventdata, handles)
% hObject    handle to run (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
load_system('Thema17_PI_Regler');
set_param('Thema17_PI_Regler', 'SimulationCommand', 'Start');


% --- Executes on button press in switch1.
function switch1_Callback(hObject, eventdata, handles)
% hObject    handle to switch1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hint: get(hObject,'Value') returns toggle state of switch1


% --- Executes on button press in cancel.
function cancel_Callback(hObject, eventdata, handles)
% hObject    handle to cancel (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
set_param('Thema17_PI_Regler', 'SimulationCommand', 'Stop');