This repository has been archived by the owner on Nov 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Documentation
samedamci edited this page Jul 10, 2020
·
1 revision
All request should be realized with the POST
HTTP method.
Display character on screen using write_char
method.
Accepted values: any str
character.
-
position
Accepted values:int
in range 1 - 8.
Default value:1
.
Display byte on screen using set_byte
method.
Accepted values: any int
byte in range 0 - 255.
-
position
Accepted values:int
in range 1 - 8.
Default value:1
.
Display number on screen using write_number
method or if number is longer than 8 characters using show_message
method
(float
is converted to str
).
Accepted values: any float
(rounded to int
).
-
position
Accepted values:int
in range 1 - 8.
Default value:1
.
Display text on screen using write_text
method or if text is longer than 8 characters using show_message
method.
Accepted values: any str
type to display on screen.
Display text but using write_blinking_text
method.
Accepted values: any str
type to display on screen. \
-
delay_hide
Accepted values: anyfloat
.
Default value:0.4
. -
delay_show
Accepted values: anyfloat
.
Default value:0.4
. -
stop_after
Accepted values: anyint
.
Default value:5
.