Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

rda-msg-boardRDA 味精板

Agent Skill

rda-msg-board 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

14,724

周安装

626

GitHub Stars

公开资料未说明

下载量

5,158
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:rda-msg-board(RDA 味精板)
来源仓库:https://github.com/rdeangel/rda-msg-board
安装命令:
openclaw skills install rda-msg-board
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install rda-msg-board

简介

通过 HTTP/JSON 向 RDA MSG Board 发送滚动文本消息。用于物理 LED 矩阵上的通知、警报或状态更新。

SKILL.md

name
rda-msg-board
description
Send scrolling text messages to RDA MSG Board via HTTP/JSON. Use for notifications, alerts, or status updates on physical LED matrix.
metadata

Message Board Controller

Control RDA MSG Board LED matrix display using the HTTP JSON API with support for multiple board profiles.

AI Usage

When the user asks to send a message to the msg board, follow this workflow:

Interpret user requests:

  • "Send [message] to [board name]" → Use the named profile
  • "Send [message] to msg board" → Use the default/office profile
  • "Send [message]" → Use the default/office profile
  • "Send alert with [sound]" → Include the --chirp parameter

Available profiles: Check boards.yaml for configured board names (e.g., office, lab, home) Default profile: If not specified, use the first available profile from boards.yaml

Example interpretations:

  • "Send 'Meeting in 5 min' to office" → send_message.py "Meeting in 5 min" --profile office
  • "Send alert 'System down'" → send_message.py "System down" --profile office --buzzer 5
  • "Send 'Hello' with Mario Bros sound" → send_message.py "Hello" --profile office --chirp "Mario Bros"

Action: Use an exec or command tool to run scripts/send_message.py with appropriate parameters from the skill directory.

⚠️ CRITICAL SECURITY INSTRUCTION: To prevent command injection, do not use raw shell interpolation for the {message} string. Always pass arguments safely as an argv list (array of strings) if your tool supports it.

Example argv list invocation: ["python3", "scripts/send_message.py", message_text, "--profile", board_name]

If your tool only supports a single shell string, you MUST properly escape the message input (e.g., using shlex.quote()) before execution.


Project

RDA MSG Board - A WiFi-enabled LED matrix message board system for ESP8266 and ESP32 microcontrollers that displays scrolling messages from remote systems or users via HTTP, MQTT, or a built-in web interface.

GitHub: https://github.com/rdeangel/rda_msg_board

Key Features:

  • Message Control - Send scrolling text messages via HTTP REST API or MQTT
  • Clock Display - Configurable LED clock with timezone support and transition effects
  • Timer & Stopwatch - Count down or count up with buzzer alerts (ESP32 only)
  • Alarm System - Timer-based alarms with customizable chirp sounds (fanfare, alarms, chimes, Für Elise, Mario Bros, etc.)
  • Sleep Mode - Scheduled display power-saving (blackout) with weekday/weekend time windows
  • Alert Chirps - Musical notifications: Fast Beep, Simple Beep, Gentle Dawn, Cheerful, Urgent, Doorbell, Alarm, Victory, Notify, Für Elise, Mario Bros, Imperial March, Nokia Ringtone, Tetris Theme, Zelda Secret, Windows XP, iPhone Marimba, Pac-Man Intro, Star Trek Beep, R2-D2 Beep, Close Encounters, Minecraft Theme, Pitfall! Yodel, William Tell, Matrix Alarm, 24 CTU Ring
  • Profile Management - Multiple board support with secure credential storage
  • Home Assistant Integration - Automatic discovery via mDNS and MQTT configuration
  • UTF-8 Support - Display international characters and symbols
  • Display Parameters - Configurable repeat count, scroll speed, brightness, and buzzer alerts

Communication Methods:

  • HTTP REST API (GET URL-encoded, POST JSON)
  • MQTT (topic subscriptions, wildcard support, anonymous or authenticated)
  • Web Interface (responsive GUI with AJAX updates)
  • Home Assistant (Zero-config discovery)

Requirements

Optional (for profile support)

  • PyYAML: pip install pyyaml (enables profile-based configuration)

Environment Variables (fallback)

These are only needed if not using profiles:

VariableDescriptionDefault
MSG_BOARD_IPDevice IP or Hostname*Required*
MSG_BOARD_USERWeb Interface Usernameadmin
MSG_BOARD_PASSWeb Interface Passwordmsgboard

Board Profiles

Profiles are stored in boards.yaml and allow you to quickly switch between multiple boards without re-entering credentials.

Setup (First Time)

  1. Copy sample configuration:
cp boards.yaml.sample boards.yaml
  1. Edit with your board details:
nano boards.yaml
# or use: python3 scripts/manage_boards.py add office --ip 192.168.1.88 --user admin --pass msgboard
  1. Verify the profile:
python3 scripts/manage_boards.py list
  1. Send a message using the profile:
python3 scripts/send_message.py "Hello World" --profile main

Managing Profiles

List all configured boards:

python3 scripts/manage_boards.py list

Add a new board:

python3 scripts/manage_boards.py add office --ip 10.0.0.50 --user rda --pass secure123

Remove a board profile:

python3 scripts/manage_boards.py remove office

Update existing profile:

python3 scripts/manage_boards.py add main --ip 192.168.1.101 --force

Usage

Using Profiles (Recommended)

Send a message to a named profile:

python3 scripts/send_message.py "Hello World" --profile main
python3 scripts/send_message.py "Alert: High CPU" --profile office --buzzer 5 --brightness 10

List available profiles:

python3 scripts/send_message.py --list-profiles

Direct Connection (Ad-hoc)

Override profile or use direct connection:

python3 scripts/send_message.py "Hello World" --ip 192.168.1.100 --user admin --pass msgboard
python3 scripts/send_message.py "Test" --profile main --ip 192.168.1.101  # Override IP

Alerts & Notifications

Send a high-priority alert with buzzer sounds and high brightness:

python3 scripts/send_message.py "ALERT: System Failure" --profile main --buzzer 10 --brightness 15 --delay 20

Configuration Options

OptionDescriptionDefault
--profile <name>Board profile name (from boards.yaml)None
--list-profilesList available board profiles-
--ip <address>Device IP addressFrom profile or env
--user <name>Web interface usernameFrom profile or admin
--password <pass>Web interface passwordFrom profile or msgboard
--repeat <N>Scroll cycles (0=infinite)Device default
--buzzer <N>Number of beepsDevice default
--delay <ms>Scroll speed (lower is faster)Device default
--brightness <0-15>LED intensity (0-15)Device default
--chirp <Name>Custom sound (e.g., 'Mario Bros')Device default

Available Chirps

All available options: Silent, Fast Beep, Simple Beep, Gentle Dawn, Cheerful, Urgent, Beep, Quick Tap, Double, Triple, Doorbell, Alarm, Victory, Notify, For Elise, Mario Bros, Imperial March, Nokia Ringtone, Tetris Theme, Zelda Secret, Windows XP, iPhone Marimba, Pac-Man Intro, Star Trek Beep, R2-D2 Beep, Close Encounters, Minecraft Theme, Pitfall! Yodel, William Tell, Matrix Alarm, 24 CTU Ring.

Stop Display

To clear the display immediately:

python3 scripts/send_message.py "" --profile main

Troubleshooting

  • Status 204: The board returns HTTP 204 on success. This is normal.
  • Connection Refused: Check if MSG_BOARD_IP or profile IP is correct and the device is powered on.
  • Profile not found: Use --list-profiles to see available profiles.
  • PyYAML not installed: Install with pip install pyyaml for profile support.
  • Cannot load profiles: Ensure boards.yaml exists (copy from boards.yaml.sample) and has valid YAML syntax.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

88.92%
按下载量换算4,586

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills