{"id":"7333598e-0292-4294-829a-f09bd5ba9a6c","slug":"sergiopesch-raspberry-pi-maker","name":"raspberry-pi-maker","description":"Guide users through Raspberry Pi projects with Python code generation, GPIO wiring, sensor integration, and troubleshooting. Use when building Pi projects, learning Linux/Python electronics, debugging GPIO issues, or setting up Pi services. Supports beginners learning by building.","canonicalUrl":"https://xpersona.co/skill/sergiopesch-raspberry-pi-maker","sourceUrl":"https://github.com/sergiopesch/raspberry-pi-maker","homepage":null,"source":"GITHUB_OPENCLEW","vendor":{"slug":"sergiopesch","label":"Sergiopesch","url":"https://github.com/sergiopesch/raspberry-pi-maker"},"protocols":["OPENCLEW"],"capabilities":["i2c"],"trustScore":null,"trustConfidence":"unknown","artifactCount":0,"benchmarkCount":0,"lastRelease":null,"freshnessAt":"2026-04-14T22:25:30.083Z","freshnessLabel":"Apr 14, 2026","securityReviewed":true,"openapiReady":false,"stats":[{"label":"Trust score","value":"Unknown"},{"label":"Compatibility","value":"OpenClaw"},{"label":"Freshness","value":"Apr 14, 2026"},{"label":"Vendor","value":"Sergiopesch"},{"label":"Artifacts","value":"0"},{"label":"Benchmarks","value":"0"},{"label":"Last release","value":"Unpublished"}],"factsPreview":[{"factKey":"docs_crawl","category":"integration","label":"Crawlable docs","value":"6 indexed pages on the official domain","href":"https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar","sourceUrl":"https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar","sourceType":"search_document","confidence":"medium","observedAt":"2026-04-15T05:03:46.393Z","isPublic":true},{"factKey":"vendor","category":"vendor","label":"Vendor","value":"Sergiopesch","href":"https://github.com/sergiopesch/raspberry-pi-maker","sourceUrl":"https://github.com/sergiopesch/raspberry-pi-maker","sourceType":"profile","confidence":"medium","observedAt":"2026-04-14T22:25:30.369Z","isPublic":true},{"factKey":"protocols","category":"compatibility","label":"Protocol compatibility","value":"OpenClaw","href":"https://xpersona.co/api/v1/agents/sergiopesch-raspberry-pi-maker/contract","sourceUrl":"https://xpersona.co/api/v1/agents/sergiopesch-raspberry-pi-maker/contract","sourceType":"contract","confidence":"medium","observedAt":"2026-04-14T22:25:30.369Z","isPublic":true},{"factKey":"handshake_status","category":"security","label":"Handshake status","value":"UNKNOWN","href":"https://xpersona.co/api/v1/agents/sergiopesch-raspberry-pi-maker/trust","sourceUrl":"https://xpersona.co/api/v1/agents/sergiopesch-raspberry-pi-maker/trust","sourceType":"trust","confidence":"medium","observedAt":null,"isPublic":true}],"highlights":["Trust evidence available"],"agentCard":{"name":"raspberry-pi-maker","description":"Guide users through Raspberry Pi projects with Python code generation, GPIO wiring, sensor integration, and troubleshooting. Use when building Pi projects, learning Linux/Python electronics, debugging GPIO issues, or setting up Pi services. Supports beginners learning by building.","source":"GITHUB_OPENCLEW","sourceId":"github:1146357664","repository":"https://github.com/sergiopesch/raspberry-pi-maker","documentation":"https://xpersona.co/skill/sergiopesch-raspberry-pi-maker/agent/sergiopesch-raspberry-pi-maker","protocols":["OPENCLEW"],"capabilities":["i2c"],"languages":["typescript"],"install":{"command":"git clone https://github.com/sergiopesch/raspberry-pi-maker.git","ecosystem":"git"},"examples":[{"kind":"example","language":"bash","snippet":"codex exec \"Write a Python script for Raspberry Pi that [description].\n   Use [gpiozero/RPi.GPIO]. GPIO pins: [list].\n   Include shebang, docstring, proper cleanup with try/finally.\n   Add comments explaining each section.\""},{"kind":"example","language":"python","snippet":"#!/usr/bin/env python3\n\"\"\"\nProject: [Name]\nDescription: [What it does]\nHardware: Raspberry Pi [model], [components]\n\"\"\"\n\nimport RPi.GPIO as GPIO\nimport time\n\n# Pin definitions (BCM numbering)\nLED_PIN = 17\n\ndef setup():\n    GPIO.setmode(GPIO.BCM)\n    GPIO.setup(LED_PIN, GPIO.OUT)\n\ndef main():\n    try:\n        setup()\n        while True:\n            GPIO.output(LED_PIN, GPIO.HIGH)\n            time.sleep(1)\n            GPIO.output(LED_PIN, GPIO.LOW)\n            time.sleep(1)\n    except KeyboardInterrupt:\n        print(\"\\nExiting...\")\n    finally:\n        GPIO.cleanup()\n\nif __name__ == \"__main__\":\n    main()"}]}}