Display Message on Screen

This topic describes how to remotely send a message to be displayed on the device's screen.

POST /message_to_screen.fcgi

Parameters

  • message (string): Message to be shown on the screen. Send an empty text to clear the previous message.
  • timeout (int): Time in milliseconds that the message should remain on the screen. When sending 0 (zero) the message will be displayed constantly.

Response

  • This request has no response.

Example:

$.ajax({
    url: "/message_to_screen.fcgi?session=" + session,
    type: 'POST',
    contentType: 'application/json',
    data: JSON.stringify({ message:"hello world!", timeout: 3000 })
});