Quote Originally Posted by mel4853 View Post
I'm trying to send a string of 9 bytes out in decimal form see code below. I don't know if I can do the decimal string.Using PBP3 and a 16F690
Try:
Code:
 
FOR i = 0 TO 8
  HSEROUT [rottime[i]]
NEXT
HSEROUT [rottime[9],10]
Norm