12 lines
No EOL
169 B
C++
12 lines
No EOL
169 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace WatchFeatures
|
|
{
|
|
class VibrationMotor
|
|
{
|
|
public:
|
|
void Vibrate(uint8_t intervalMs = 100, uint8_t length = 20);
|
|
};
|
|
} |