send_text
Send text notifications to Dot e-ink display devices for task completion alerts, important issues, reminders, and long-running task updates.
Instructions
Send text content to a Dot device (an e-ink display device). The text will be displayed on the e-ink screen.
You should PROACTIVELY call this tool to notify the user when:
You have completed a task (e.g., finished writing code, fixed a bug, completed a refactor)
You encounter an important issue that needs user attention
You want to remind the user about something important
A long-running task has finished
IMPORTANT: When you PROACTIVELY send a notification (not requested by user), you MUST include your name/identity in the signature field.
NOTE: If the request fails, retry once as it may be a temporary API issue.
Example: After completing a coding task, call this tool with title "Task Completed", message "I've finished implementing the feature you requested. Please review the changes.", and signature with your name (if proactively notifying) to notify the user on their Dot device.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | Text title displayed on the screen (max 10 Chinese characters display length) | |
| message | No | Text content displayed on the screen (max 40 Chinese characters display length) | |
| signature | No | Text signature displayed on the screen | |
| icon | No | Base64 encoded PNG icon data (40x40px), displayed in the bottom left corner | |
| link | No | HTTP/HTTPS link or Scheme URL for tap-to-open functionality | |
| refreshNow | No | Whether to display content immediately (default: true) |