* feat: add ZeroClaw firmware for ESP32 and Nucleo * Introduced new firmware for ZeroClaw on ESP32 and Nucleo-F401RE, enabling JSON-over-serial communication for GPIO control. * Added `zeroclaw-esp32` with support for commands like `gpio_read` and `gpio_write`, along with capabilities reporting. * Implemented `zeroclaw-nucleo` firmware with similar functionality for STM32, ensuring compatibility with existing ZeroClaw protocols. * Updated `.gitignore` to include new firmware targets and added necessary dependencies in `Cargo.toml` for both platforms. * Created README files for both firmware projects detailing setup, build, and usage instructions. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> * feat: enhance hardware peripheral support and documentation - Added `Peripheral` trait implementation in `src/peripherals/` to manage hardware boards (STM32, RPi GPIO). - Updated `AGENTS.md` to include new extension points for peripherals and their configuration. - Introduced comprehensive documentation for adding boards and tools, including a quick start guide and supported boards. - Enhanced `Cargo.toml` to include optional dependencies for PDF extraction and peripheral support. - Created new datasheets for Arduino Uno, ESP32, and Nucleo-F401RE, detailing pin aliases and GPIO usage. - Implemented new tools for hardware memory reading and board information retrieval in the agent loop. This update significantly improves the integration and usability of hardware peripherals within the ZeroClaw framework. * feat: add ZeroClaw firmware for ESP32 and Nucleo * Introduced new firmware for ZeroClaw on ESP32 and Nucleo-F401RE, enabling JSON-over-serial communication for GPIO control. * Added `zeroclaw-esp32` with support for commands like `gpio_read` and `gpio_write`, along with capabilities reporting. * Implemented `zeroclaw-nucleo` firmware with similar functionality for STM32, ensuring compatibility with existing ZeroClaw protocols. * Updated `.gitignore` to include new firmware targets and added necessary dependencies in `Cargo.toml` for both platforms. * Created README files for both firmware projects detailing setup, build, and usage instructions. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> * feat: enhance hardware peripheral support and documentation - Added `Peripheral` trait implementation in `src/peripherals/` to manage hardware boards (STM32, RPi GPIO). - Updated `AGENTS.md` to include new extension points for peripherals and their configuration. - Introduced comprehensive documentation for adding boards and tools, including a quick start guide and supported boards. - Enhanced `Cargo.toml` to include optional dependencies for PDF extraction and peripheral support. - Created new datasheets for Arduino Uno, ESP32, and Nucleo-F401RE, detailing pin aliases and GPIO usage. - Implemented new tools for hardware memory reading and board information retrieval in the agent loop. This update significantly improves the integration and usability of hardware peripherals within the ZeroClaw framework. * feat: Introduce hardware auto-discovery and expanded configuration options for agents, hardware, and security. * chore: update dependencies and improve probe-rs integration - Updated `Cargo.lock` to remove specific version constraints for several dependencies, including `zerocopy`, `syn`, and `strsim`, allowing for more flexibility in version resolution. - Upgraded `bincode` and `bitfield` to their latest versions, enhancing serialization and memory management capabilities. - Updated `Cargo.toml` to reflect the new version of `probe-rs` from `0.24` to `0.30`, improving hardware probing functionality. - Refactored code in `src/hardware` and `src/tools` to utilize the new `SessionConfig` for session management in `probe-rs`, ensuring better compatibility and performance. - Cleaned up documentation in `docs/datasheets/nucleo-f401re.md` by removing unnecessary lines. * fix: apply cargo fmt * docs: add hardware architecture diagram. --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
161 lines
5.4 KiB
Rust
161 lines
5.4 KiB
Rust
//! Arduino upload tool — agent generates code, uploads via arduino-cli.
|
|
//!
|
|
//! When user says "make a heart on the LED grid", the agent generates Arduino
|
|
//! sketch code and calls this tool. ZeroClaw compiles and uploads it — no
|
|
//! manual IDE or file editing.
|
|
|
|
use crate::tools::traits::{Tool, ToolResult};
|
|
use async_trait::async_trait;
|
|
use serde_json::{json, Value};
|
|
use std::process::Command;
|
|
|
|
/// Tool: upload Arduino sketch (agent-generated code) to the board.
|
|
pub struct ArduinoUploadTool {
|
|
/// Serial port path (e.g. /dev/cu.usbmodem33000283452)
|
|
pub port: String,
|
|
}
|
|
|
|
impl ArduinoUploadTool {
|
|
pub fn new(port: String) -> Self {
|
|
Self { port }
|
|
}
|
|
}
|
|
|
|
#[async_trait]
|
|
impl Tool for ArduinoUploadTool {
|
|
fn name(&self) -> &str {
|
|
"arduino_upload"
|
|
}
|
|
|
|
fn description(&self) -> &str {
|
|
"Generate Arduino sketch code and upload it to the connected Arduino. Use when: user asks to 'make a heart', 'blink LED', or run any custom pattern on Arduino. You MUST write the full .ino sketch code (setup + loop). Arduino Uno: pin 13 = built-in LED. Saves to temp dir, runs arduino-cli compile and upload. Requires arduino-cli installed."
|
|
}
|
|
|
|
fn parameters_schema(&self) -> Value {
|
|
json!({
|
|
"type": "object",
|
|
"properties": {
|
|
"code": {
|
|
"type": "string",
|
|
"description": "Full Arduino sketch code (complete .ino file content)"
|
|
}
|
|
},
|
|
"required": ["code"]
|
|
})
|
|
}
|
|
|
|
async fn execute(&self, args: Value) -> anyhow::Result<ToolResult> {
|
|
let code = args
|
|
.get("code")
|
|
.and_then(|v| v.as_str())
|
|
.ok_or_else(|| anyhow::anyhow!("Missing 'code' parameter"))?;
|
|
|
|
if code.trim().is_empty() {
|
|
return Ok(ToolResult {
|
|
success: false,
|
|
output: String::new(),
|
|
error: Some("Code cannot be empty".into()),
|
|
});
|
|
}
|
|
|
|
// Check arduino-cli exists
|
|
if Command::new("arduino-cli").arg("version").output().is_err() {
|
|
return Ok(ToolResult {
|
|
success: false,
|
|
output: String::new(),
|
|
error: Some(
|
|
"arduino-cli not found. Install it: https://arduino.github.io/arduino-cli/"
|
|
.into(),
|
|
),
|
|
});
|
|
}
|
|
|
|
let sketch_name = "zeroclaw_sketch";
|
|
let temp_dir = std::env::temp_dir().join(format!("zeroclaw_{}", uuid::Uuid::new_v4()));
|
|
let sketch_dir = temp_dir.join(sketch_name);
|
|
let ino_path = sketch_dir.join(format!("{}.ino", sketch_name));
|
|
|
|
if let Err(e) = std::fs::create_dir_all(&sketch_dir) {
|
|
return Ok(ToolResult {
|
|
success: false,
|
|
output: format!("Failed to create sketch dir: {}", e),
|
|
error: Some(e.to_string()),
|
|
});
|
|
}
|
|
|
|
if let Err(e) = std::fs::write(&ino_path, code) {
|
|
let _ = std::fs::remove_dir_all(&temp_dir);
|
|
return Ok(ToolResult {
|
|
success: false,
|
|
output: format!("Failed to write sketch: {}", e),
|
|
error: Some(e.to_string()),
|
|
});
|
|
}
|
|
|
|
let sketch_path = sketch_dir.to_string_lossy();
|
|
let fqbn = "arduino:avr:uno";
|
|
|
|
// Compile
|
|
let compile = Command::new("arduino-cli")
|
|
.args(["compile", "--fqbn", fqbn, &sketch_path])
|
|
.output();
|
|
|
|
let compile_output = match compile {
|
|
Ok(o) => o,
|
|
Err(e) => {
|
|
let _ = std::fs::remove_dir_all(&temp_dir);
|
|
return Ok(ToolResult {
|
|
success: false,
|
|
output: format!("arduino-cli compile failed: {}", e),
|
|
error: Some(e.to_string()),
|
|
});
|
|
}
|
|
};
|
|
|
|
if !compile_output.status.success() {
|
|
let stderr = String::from_utf8_lossy(&compile_output.stderr);
|
|
let _ = std::fs::remove_dir_all(&temp_dir);
|
|
return Ok(ToolResult {
|
|
success: false,
|
|
output: format!("Compile failed:\n{}", stderr),
|
|
error: Some("Arduino compile error".into()),
|
|
});
|
|
}
|
|
|
|
// Upload
|
|
let upload = Command::new("arduino-cli")
|
|
.args(["upload", "-p", &self.port, "--fqbn", fqbn, &sketch_path])
|
|
.output();
|
|
|
|
let upload_output = match upload {
|
|
Ok(o) => o,
|
|
Err(e) => {
|
|
let _ = std::fs::remove_dir_all(&temp_dir);
|
|
return Ok(ToolResult {
|
|
success: false,
|
|
output: format!("arduino-cli upload failed: {}", e),
|
|
error: Some(e.to_string()),
|
|
});
|
|
}
|
|
};
|
|
|
|
let _ = std::fs::remove_dir_all(&temp_dir);
|
|
|
|
if !upload_output.status.success() {
|
|
let stderr = String::from_utf8_lossy(&upload_output.stderr);
|
|
return Ok(ToolResult {
|
|
success: false,
|
|
output: format!("Upload failed:\n{}", stderr),
|
|
error: Some("Arduino upload error".into()),
|
|
});
|
|
}
|
|
|
|
Ok(ToolResult {
|
|
success: true,
|
|
output:
|
|
"Sketch compiled and uploaded successfully. The Arduino is now running your code."
|
|
.into(),
|
|
error: None,
|
|
})
|
|
}
|
|
}
|