https://github.com/kimushun1101/pomodoro-timer
Pomodoro Timer running on MATLAB
https://github.com/kimushun1101/pomodoro-timer
matlab matlab-gui timer timer-application
Last synced: 8 months ago
JSON representation
Pomodoro Timer running on MATLAB
- Host: GitHub
- URL: https://github.com/kimushun1101/pomodoro-timer
- Owner: kimushun1101
- License: mit
- Created: 2024-11-16T00:30:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-03T20:15:36.000Z (over 1 year ago)
- Last Synced: 2025-03-15T18:17:52.352Z (about 1 year ago)
- Topics: matlab, matlab-gui, timer, timer-application
- Language: MATLAB
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://jp.mathworks.com/matlabcentral/fileexchange/176183-pomodoro-timer)
# pomodoro-timer
Pomodoro Timer running on MATLAB.
The Pomodoro Technique is a time management method.
Users set the number of cycles, and each cycle consists of a 25 minutes work followed by a 5 minutes short break.
In the last cycle, instead of a short break, take a 30 minutes longer break.
This timer displays the current status and the time remaining.
A sound notification alerts the user when the timer switches each status.

## Install
Open [Add-On Explorer](https://jp.mathworks.com/help/matlab/matlab_env/get-add-ons.html) on your MATLAB and Search `pomodoro-timer`, then `Add` -> `Add to MATLAB`.
## Usage
Execution can be performed without arguments.
The command is only `>> pomodoroTimer`.
The default number of cycles is `4`.
To change it, simply give the desired number as an argument.
```
pomodoroTimer(3)
```
### Option arguments
It can be executed with the following options (default values in parentheses).
- `WorkTime` (25) : Minutes of a work time.
- `ShortBreakTime` (5) : Minutes of a short break.
- `LongBreakTime` (15) : Minutes of a long break.
For example:
```
pomodoroTimer(3, "WorkTime", 52, "ShortBreakTime", 17, "LongBreakTime", 60)
```
## Uninstall
Execute the following command.
```
matlab.addons.uninstall("pomodoro-timer")
```
## License
The MIT License