Did not find a way to simply put static text e.g. "Hello world!" on a watch face.
Use case: you want to print something, then play with style, size, onscreen position.
"Today on Monday, 12.10.2015 you've made 1020 steps".
"Temperature in Madrid is 23°C"
Possible solutions:
printf approach, e.g. printf("%d x %d is %d", 6, 7, 6*7)
Python format approach, e.g. print("Five times six equals {0}.".format(5*6))
Did not find a way to simply put static text e.g. "Hello world!" on a watch face. Use case: you want to print something, then play with style, size, onscreen position.
Possible solutions:
printf("%d x %d is %d", 6, 7, 6*7)
print("Five times six equals {0}.".format(5*6))