haptic_morse 1.0.5
haptic_morse: ^1.0.5 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() {
final morse = HapticMorse.custom(
charMap: ['.-', '-...', '☀️-', '💧💧'], // Your custom Morse patterns
charReference: 'AB日水', // Must match the map's order
numericMap: ['...', '...-', '💎', '🌙'],
numericReference: '0123', // Also in order
);
final output = morse.convertTextToMorseString("AB日水");
print(output);
}