haptic_morse 1.0.0
haptic_morse: ^1.0.0 copied to clipboard
Convert text to Morse code and haptic vibration patterns in Dart.
example/haptic_morse_example.dart
import 'package:haptic_morse/haptic_morse.dart';
void main() {
var hapticMorse = HapticMorse();
var morseCode = hapticMorse.convertTextToMorseString("SOS 123");
print(
morseCode,
); // Output: [100, 300, 100, 100, 300, 700, 100, 300, 100, 100, 300]
}