+ 1
Ok, so looking at the coding challenges, I came upon a couple interesting ideas, and I wondered if anybody could combine them.
So, could somebody explain how to apply a vibration code to a letter(or word) to Morse code converter, so that the letter would then be translated into a series of vibrations on an updated android device. I don't have a preference for any program, and thanks for any response.
2 ответов
+ 11
String to Morse is doable, and we are also provided the API for vibration:
developer.android.com/reference/android/os/Vibrator.html
Play around with it using Android Studio and you'll have yourself a working app of your description. For web, I believe there is also a usable vibration API:
googlechrome.github.io/samples/vibration/
0
Thank you!