WatchyWatchFace/src/WatchFeatures/VibrationMotor.h
Lewis Jackson d318322ae5
All checks were successful
Compile / Compile (push) Successful in 1m22s
Little refactoring: Move vibration motor functionality into features
2023-06-02 23:06:53 +03:00

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);
};
}