I hope @kkramsay23 Visits again otherwise it is up for Grabs . I don’t think I have seen a digital roman . I am tempted to do the seconds just for fun .
Yes, will surely work on it.
@kkramsay23 Did you get to Inspect the test . I left it open . Of course if you want to do it under your own Steam don’t look under the Hood.
Working on some ideas, if needed will inspect it.
Thanks
Respect . I will take it down. Many on here reckon I jump the gun . The Point it is possible and there are a couple of strategies . It always so satisfying to achieve the result you want with your own Learning . Pleas let us know how you get on .
Funny, a while ago I got the strange idea of playing with Roman numerals, and LCD. The 2 didn’t quite mix well. For starters, minutes and seconds in Roman numerals can be anywhere from 1 to 7 digits wide. Next, trying to do that on an LCD display means I can’t center the text of the 7 digits, since the variable width of the actual digits won’t sit well on a center-justified 7-digit field (ie, fixed-position LCD segments), so it would have to be left justified, which makes it look odd.
I gave up trying to figure out the math, the lack of variables makes it overly complicated, if not impossible. So… I used a spreadsheet to create long-arse conditionals for the digits, I created a left-justified LCD field, and I tried the whole thing anyhow-- just for the heck of trying it. As @russellcresser mentioned, there’s no zero numeral, so I substituted what Google Translate claims to be the Latin word for zero, NULLA. Works, but looks funky. And what better name to give it but CASIUS ![]()
hours:
$#Db#==0?nulla:$$#Db#==1?I:$$#Db#==2?II:$$#Db#==3?III:$$#Db#==4?IV:$$#Db#==5?V:$$#Db#==6?VI:$$#Db#==7?VII:$$#Db#==8?VIII:$$#Db#==9?IX:$$#Db#==10?X:$$#Db#==11?XI:$$#Db#==12?XII:$$#Db#==13?XIII:$$#Db#==14?XIV:$$#Db#==15?XV:$$#Db#==16?XVI:$$#Db#==17?XVII:$$#Db#==18?XVIII:$$#Db#==19?XIX:$$#Db#==20?XX:$$#Db#==21?XXI:$$#Db#==22?XXII:$$#Db#==23?XXIII:$
minutes:
$#Dm#==0?nulla:$$#Dm#==1?I:$$#Dm#==2?II:$$#Dm#==3?III:$$#Dm#==4?IV:$$#Dm#==5?V:$$#Dm#==6?VI:$$#Dm#==7?VII:$$#Dm#==8?VIII:$$#Dm#==9?IX:$$#Dm#==10?X:$$#Dm#==11?XI:$$#Dm#==12?XII:$$#Dm#==13?XIII:$$#Dm#==14?XIV:$$#Dm#==15?XV:$$#Dm#==16?XVI:$$#Dm#==17?XVII:$$#Dm#==18?XVIII:$$#Dm#==19?XIX:$$#Dm#==20?XX:$$#Dm#==21?XXI:$$#Dm#==22?XXII:$$#Dm#==23?XXIII:$$#Dm#==24?XXIV:$$#Dm#==25?XXV:$$#Dm#==26?XXVI:$$#Dm#==27?XXVII:$$#Dm#==28?XXVIII:$$#Dm#==29?XXIX:$$#Dm#==30?XXX:$$#Dm#==31?XXXI:$$#Dm#==32?XXXII:$$#Dm#==33?XXXIII:$$#Dm#==34?XXXIV:$$#Dm#==35?XXXV:$$#Dm#==36?XXXVI:$$#Dm#==37?XXXVII:$$#Dm#==38?XXXVIII:$$#Dm#==39?XXXIX:$$#Dm#==40?XL:$$#Dm#==41?XLI:$$#Dm#==42?XLII:$$#Dm#==43?XLIII:$$#Dm#==44?XLIV:$$#Dm#==45?XLV:$$#Dm#==46?XLVI:$$#Dm#==47?XLVII:$$#Dm#==48?XLVIII:$$#Dm#==49?XLIX:$$#Dm#==50?L:$$#Dm#==51?LI:$$#Dm#==52?LII:$$#Dm#==53?LIII:$$#Dm#==54?LIV:$$#Dm#==55?LV:$$#Dm#==56?LVI:$$#Dm#==57?LVII:$$#Dm#==58?LVIII:$$#Dm#==59?LIX:$
seconds:
$#Ds#==0?nulla:$$#Ds#==1?I:$$#Ds#==2?II:$$#Ds#==3?III:$$#Ds#==4?IV:$$#Ds#==5?V:$$#Ds#==6?VI:$$#Ds#==7?VII:$$#Ds#==8?VIII:$$#Ds#==9?IX:$$#Ds#==10?X:$$#Ds#==11?XI:$$#Ds#==12?XII:$$#Ds#==13?XIII:$$#Ds#==14?XIV:$$#Ds#==15?XV:$$#Ds#==16?XVI:$$#Ds#==17?XVII:$$#Ds#==18?XVIII:$$#Ds#==19?XIX:$$#Ds#==20?XX:$$#Ds#==21?XXI:$$#Ds#==22?XXII:$$#Ds#==23?XXIII:$$#Ds#==24?XXIV:$$#Ds#==25?XXV:$$#Ds#==26?XXVI:$$#Ds#==27?XXVII:$$#Ds#==28?XXVIII:$$#Ds#==29?XXIX:$$#Ds#==30?XXX:$$#Ds#==31?XXXI:$$#Ds#==32?XXXII:$$#Ds#==33?XXXIII:$$#Ds#==34?XXXIV:$$#Ds#==35?XXXV:$$#Ds#==36?XXXVI:$$#Ds#==37?XXXVII:$$#Ds#==38?XXXVIII:$$#Ds#==39?XXXIX:$$#Ds#==40?XL:$$#Ds#==41?XLI:$$#Ds#==42?XLII:$$#Ds#==43?XLIII:$$#Ds#==44?XLIV:$$#Ds#==45?XLV:$$#Ds#==46?XLVI:$$#Ds#==47?XLVII:$$#Ds#==48?XLVIII:$$#Ds#==49?XLIX:$$#Ds#==50?L:$$#Ds#==51?LI:$$#Ds#==52?LII:$$#Ds#==53?LIII:$$#Ds#==54?LIV:$$#Ds#==55?LV:$$#Ds#==56?LVI:$$#Ds#==57?LVII:$$#Ds#==58?LVIII:$$#Ds#==59?LIX:$
(and NO, I didn’t type all of that, Excel did most of the work!)
(also NO, those long-winded formulas will not work on all watches)
I love it. NULLA.
You have done the only thing posdible there. Above each other.
You could have an inverse Font with flames behind it and call it Nero Zero.
Thanks for sharing that Code. I spent 2 hours typing it in creator. That is why I get fed up with the whole thing some times . I must get on that spreadsheet.
Good Tutorial.
BTW. The multi conditional works with text but not with numbers. Voodoo Rules.
Download the spreadsheet and mess around with it in MS-Excel (I don’t know about Google Sheets, I don’t use it and I don’t like it). Seconds (column D) and Minutes (column F) end up exceedingly wide, which is why I have their column widths narrowed, so start with the hours since it’s shorter and you can visualize the whole thing in column H.
All it takes is to formulate the conditional for the first digit (zero) in H3, then in H4 concatenate what’s above it (H3) with the conditional for the second digit (1). Keep going downwards and string along the conditionals. The very last cell (H26) has your completed and exact formula for hours.
Thanks for sharing the Spreadsheet . Essential for doing the Battery Percent . ![]()
Love the YT Video.
Learnt a new word today concatenate .
You mean you’ve concatenated a new word onto your vocabulary!
And speaking of battery…
I hastily added the battery, but because of space constraints it ended up being an odd sized bar graph of 6 segments.
Respect:::)))
Wonderful. Looks really cool, Fantastic job!
If the Romans at the time could have seen this, they would have concluded to rethink their numbering … ![]()
What did they have to tell time? Sundials, right?

maybe, I’ll give that a go on a smartwatch… ![]()
Yeah . There are a few . If you had the compass involved and the seasons that could be great fun .
abs(#DWFHS#/#SEASONOF THE YEAR#)
You actually might be able to use the Moon Distance for Seasons . You have got me thinking now . I am thinking I have actually don a bit of a sundial thing .
Is that and Etsy Product BTW.
Hey Brilliant . I did not see a compass on there . I can imagine the Gnomon getting caught up in your jumper even if it is retractable . That is why the Romans always had Bare Arms I guess. I loved that someone reckoned the Vikings Navigated to Newfoundland and reckoned the time of day with a nice Felspar Crystal .
Below is my attempt at a Roman ‘digital watch’ I treat this watchface as a learning face - thanks to @russellcresser @kourosh and @tom.vannes for help with conditionals and to the community for making things interesting enough to learn!
Ha Ha Times Roman. Very Good. I made one for Fun of the back of what @kourosh had done. Made a Battery Read out. That’s me done with Romans .