********************************** createSquareRows.txt (text) **********************************d by D@CC on 2023DApr05 createSquareRows(nRows,strPreface,strHHMI,isShow) parm0: # of rows eg 5 parm1: string preface parm2: str to display parm3: isShow: True to show debugging info Purpose: To print a row of large characters on the Wio Display if nRows<1 : print("Error S07 createSquareRows, nRows is <1:",nRows) #if end #print("into createSquareRows") #Purpose: to create 5 rows of square DIGITs #Returns: nothing, but prints 5 lines # each row contains strPreface, row of sqChar for each of HH:MI #strDisplay=strPreface #list to contain rows to display #strDigit="0" # digit to display #strDigit=strHHMI[0:1] # get 1st char to display #show("strDigit",strDigit,True) #show("@359, strHHMI:",strHHMI,True) listDisplay=[] #listDisplay.append("2") #listDisplay.append("3") #print("@352") #showList("listDisplay",True,listDisplay,True) showList("listDisplay",True,listDisplay,True) *************************************************************** /createSquareRows.txt