필터 지우기
필터 지우기

Countdown Timer MATLAB GUIDE

조회 수: 6 (최근 30일)
Karan Kular
Karan Kular 2016년 12월 7일
답변: David Barry 2016년 12월 8일
Hi, I am creating a quiz in MATLAB and I am having some issues creating a timer for my GUI. I want the timer displayed in the top right from 60 seconds (as soon as the file runs) to 0 seconds, when the file will close, as the player has ran out of time.
I am unsure how to do this and where I would implement it in my code.
Here is my code for the GUI so far:
function varargout = Question_1(varargin)
% QUESTION_1 MATLAB code for Question_1.fig
% QUESTION_1, by itself, creates a new QUESTION_1 or raises the existing
% singleton*.
%
% H = QUESTION_1 returns the handle to a new QUESTION_1 or the handle to
% the existing singleton*.
%
% QUESTION_1('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in QUESTION_1.M with the given input arguments.
%
% QUESTION_1('Property','Value',...) creates a new QUESTION_1 or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before Question_1_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to Question_1_OpeningFcn via varargin.
%
% *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 Question_1
% Last Modified by GUIDE v2.5 07-Dec-2016 20:24:43
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @Question_1_OpeningFcn, ...
'gui_OutputFcn', @Question_1_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 Question_1 is made visible.
function Question_1_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 command line arguments to Question_1 (see VARARGIN)
% Choose default command line output for Question_1
handles.output = hObject;
[y,Fs] = audioread('Game Show Timekeeper - SOUND EFFECT - Quiz Show.wav');
sound(y,Fs);
% Update handles structure
guidata(hObject, handles);
% UIWAIT makes Question_1 wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = Question_1_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 pushbutton9.
function pushbutton9_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton9 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
clear sound
close
run Boxes_1.m
% --- Executes on button press in pushbutton10.
function pushbutton10_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton10 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
clear sound
close
run PopUp_Incorrect.m
% --- Executes on button press in pushbutton11.
function pushbutton11_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton11 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
clear sound
close
run PopUp_Incorrect.m
% --- Executes on button press in pushbutton12.
function pushbutton12_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton12 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
clear sound
close
run PopUp_Incorrect.m
% --- Executes on button press in pushbutton13.
function pushbutton13_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton13 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
clear sound
close
I would appreciate the help of how to do this and where it fits into my code.
Thank you.

답변 (1개)

David Barry
David Barry 2016년 12월 8일
You could use a timer object and in the callback have it update a text label in your GUI.

카테고리

Help CenterFile Exchange에서 Word games에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by