Vibrate.hpp
1// Copyright 2019 Arthur Sonzogni. All rights reserved.
2// Use of this source code is governed by the MIT license that can be found in
3// the LICENSE file.
4
5#ifndef SMK_VIBRATE_HPP
6#define SMK_VIBRATE_HPP
7
8/// @example vibrate.cpp
9
10namespace smk {
11
12/// Produce a screen vibration of supported devices.
13/// @param ms The number of millisecond the vibration must last.
14void Vibrate(int ms);
15
16} // namespace smk
17
18#endif /* end of include guard: SMK_VIBRATE_HPP */