Data Display
in Propeller 1
I would like to use SimpleIDE to display alpha numeric information on a computer screen. The data will consist of alpha (Temperature, Pressure, Time, Humidity, etc.) and numeric (123.456). Is there a directory of commands in C available that I can use to place this data on the screen in various locations? if so, how can I acquire it for compiling in SimpleIDE?
The data will be generated by a propeller.
Sincerely,
Discovery
The data will be generated by a propeller.
Sincerely,
Discovery

Comments
#include <simpletools.h> void main () { float temp = 20.1; int hour = 16; int minute = 9; print("Temp = %2.3f C\n", temp); print("Time = %2d:%02d %s\n", hour % 12, minute, hour > 12 ? "pm" : "am"); }This would print to the terminal on your computer: