crawler: --no-cover, --concurrency, drop cross-host sleep + batch-50 Step 1 done

Three crawler ergonomics for batch operations:

--no-cover  Skip cover image download. For scan-only modes (license/meta
            scrape) this drops ~1.3s/project and avoids slow-CDN hangs.

--concurrency N  ThreadPoolExecutor wrapping the per-project loop. Default
                 1 = serial (current behavior). Anonymous endpoints tolerate
                 5+ comfortably; output uses a print lock for readable
                 interleaved progress. fetch_cover plumbs through crawl_one.

Drop cross-host sleep #1: in crawl_one between detail HTML (oshwhub.com)
and cover image (image.lceda.cn). Different hosts — sleep was unnecessary.
Saves ~1s/project. Sleep #2 (post-cover, before next iteration) stays — it
gates the next oshwhub.com hit.

download_to gains max_seconds wall budget (default 60s, cover uses 15s).
Defends against pathologically slow CDN connections — observed 10 KB/s
on image.lceda.cn for one project, would have hung 6+ min on a 3.6 MB
cover otherwise. httpx default timeout resets per chunk, so streaming
downloads need an external wall-clock guard.

batch-50 Step 1 (license/meta scrape) shipped:
  50/50 candidates have metadata.json + license recorded
  License distribution: GPL 3.0 32, Public Domain 6, NC variants 8,
                        CERN-OHL 1, MIT 1, CC BY 3.0 1
  Forge-friendly (non-NC): 41/50 (82%)
  Declared attachments: 180 files / 2.36 GB (median 18 MB/proj, max 304 MB)
  Walltime: 3min 26s for 28 projects at concurrency=5 (server-side
            HTML render bound, not sleep-bound)

One orphan partial cover (a670e60a...) cleaned up — leftover from the
first aborted run before the timeout fix landed.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-29 01:35:11 +08:00
parent fe6971f3f9
commit c6fd111d6d
171 changed files with 5410 additions and 17 deletions

View File

@@ -21,6 +21,7 @@ import json
import re import re
import shutil import shutil
import sys import sys
import threading
import time import time
import urllib.parse import urllib.parse
from datetime import datetime, timezone from datetime import datetime, timezone
@@ -258,15 +259,30 @@ def parse_detail_html(h: str) -> dict:
# Download helpers # Download helpers
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
def download_to(client: httpx.Client, url: str, dest: Path) -> tuple[int, str]: def download_to(
"""Stream-download url to dest. Returns (size, sha256).""" client: httpx.Client, url: str, dest: Path, *, max_seconds: float = 60.0
) -> tuple[int, str]:
"""Stream-download url to dest. Returns (size, sha256).
`max_seconds` caps total download walltime — defends against
pathologically slow CDN connections (observed 10 KB/s on
image.lceda.cn for one project, would have hung 6+ min on a 3.6 MB
cover otherwise). httpx's default timeout resets per chunk, so
relying on it for streaming is unsafe. We track wall time ourselves.
"""
dest.parent.mkdir(parents=True, exist_ok=True) dest.parent.mkdir(parents=True, exist_ok=True)
h = hashlib.sha256() h = hashlib.sha256()
size = 0 size = 0
t_start = time.monotonic()
with client.stream("GET", url) as r: with client.stream("GET", url) as r:
r.raise_for_status() r.raise_for_status()
with open(dest, "wb") as f: with open(dest, "wb") as f:
for chunk in r.iter_bytes(1 << 15): for chunk in r.iter_bytes(1 << 15):
if time.monotonic() - t_start > max_seconds:
raise httpx.ReadTimeout(
f"download exceeded {max_seconds}s wall budget "
f"(got {size} of {r.headers.get('content-length', '?')} bytes)"
)
f.write(chunk) f.write(chunk)
h.update(chunk) h.update(chunk)
size += len(chunk) size += len(chunk)
@@ -904,6 +920,7 @@ def crawl_one(
list_item: dict, list_item: dict,
out_root: Path, out_root: Path,
fetch_files: bool = True, fetch_files: bool = True,
fetch_cover: bool = True,
source_client: httpx.Client | None = None, source_client: httpx.Client | None = None,
pro_source_client: httpx.Client | None = None, pro_source_client: httpx.Client | None = None,
skip_exts: set[str] | None = None, skip_exts: set[str] | None = None,
@@ -914,23 +931,28 @@ def crawl_one(
proj_dir = out_root / uuid proj_dir = out_root / uuid
proj_dir.mkdir(parents=True, exist_ok=True) proj_dir.mkdir(parents=True, exist_ok=True)
# 1. Fetch detail HTML # 1. Fetch detail HTML.
# No polite_sleep after — the next call goes to image.lceda.cn (cover)
# or to attachment CDN, both different hosts from the detail server.
# Sleep is used to space hits to the *same* host before the next iteration.
detail_url = f"{BASE}/{path}" detail_url = f"{BASE}/{path}"
r = client.get(detail_url) r = client.get(detail_url)
r.raise_for_status() r.raise_for_status()
detail = parse_detail_html(r.text) detail = parse_detail_html(r.text)
polite_sleep()
# 2. Cover image # 2. Cover image (skipped via fetch_cover=False — useful for scan-only modes
# like Step 1 of batch ingest where we only want license/meta).
thumb_url = list_item["thumb"] thumb_url = list_item["thumb"]
if thumb_url.startswith("//"): if thumb_url.startswith("//"):
thumb_url = "https:" + thumb_url thumb_url = "https:" + thumb_url
cover_rel = None cover_rel = None
if thumb_url: if thumb_url and fetch_cover:
ext = Path(urllib.parse.urlparse(thumb_url).path).suffix or ".jpg" ext = Path(urllib.parse.urlparse(thumb_url).path).suffix or ".jpg"
cover_rel = f"cover{ext}" cover_rel = f"cover{ext}"
try: try:
download_to(client, thumb_url, proj_dir / cover_rel) # Cover thumbs should be small (~100-300 KB). Cap walltime at 15s
# so a pathologically slow CDN connection can't hang the loop.
download_to(client, thumb_url, proj_dir / cover_rel, max_seconds=15.0)
except httpx.HTTPError as e: except httpx.HTTPError as e:
print(f" cover failed: {e}", file=sys.stderr) print(f" cover failed: {e}", file=sys.stderr)
cover_rel = None cover_rel = None
@@ -1177,6 +1199,30 @@ def main(argv: list[str] | None = None) -> int:
"Trips inside the chain loop, wipes partial source/, records to " "Trips inside the chain loop, wipes partial source/, records to "
"data/state/oshwhub_pro_oversize.jsonl. No effect on Std or Pro 2.x legacy.", "data/state/oshwhub_pro_oversize.jsonl. No effect on Std or Pro 2.x legacy.",
) )
ap.add_argument(
"--from-jsonl",
type=Path,
default=None,
help="read pre-selected listing items from a jsonl (one item per line, "
"shape matches /api/project listing entries). Bypasses the listing "
"API entirely — useful when candidates were chosen offline from the "
"full-corpus index, where most aren't in the default top-N pages.",
)
ap.add_argument(
"--no-cover",
action="store_true",
help="skip cover image download. For scan-only runs (license / meta scrape) "
"this drops ~1.3s/project and avoids slow-CDN hangs.",
)
ap.add_argument(
"--concurrency",
type=int,
default=1,
help="number of parallel crawl_one workers (ThreadPoolExecutor). Default 1 "
"= serial. Anonymous endpoints (oshwhub.com detail/listing) tolerate "
"concurrency 5+ comfortably; only enable when no auth is involved or "
"you've probed the host.",
)
args = ap.parse_args(argv) args = ap.parse_args(argv)
skip_exts: set[str] | None = ( skip_exts: set[str] | None = (
{x.strip().lower().lstrip(".") for x in args.skip_ext.split(",") if x.strip()} {x.strip().lower().lstrip(".") for x in args.skip_ext.split(",") if x.strip()}
@@ -1200,7 +1246,13 @@ def main(argv: list[str] | None = None) -> int:
with make_client() as client: with make_client() as client:
# Build list of items to crawl # Build list of items to crawl
if args.from_jsonl:
items = [json.loads(ln) for ln in args.from_jsonl.read_text().splitlines() if ln.strip()]
if args.uuids: if args.uuids:
wanted = set(args.uuids.split(","))
items = [i for i in items if i.get("uuid") in wanted]
print(f"loaded {len(items)} items from {args.from_jsonl}")
elif args.uuids:
wanted = set(args.uuids.split(",")) wanted = set(args.uuids.split(","))
items: list[dict] = [] items: list[dict] = []
for it in iter_candidates( for it in iter_candidates(
@@ -1234,26 +1286,41 @@ def main(argv: list[str] | None = None) -> int:
make_pro_source_client(args.pro_cookie) if args.with_pro_source else None make_pro_source_client(args.pro_cookie) if args.with_pro_source else None
) )
try: try:
print(f"Crawling {len(items)} projects -> {args.out}") print(f"Crawling {len(items)} projects -> {args.out} (concurrency={args.concurrency})")
for i, it in enumerate(items, 1): print_lock = threading.Lock()
print(f"[{i}/{len(items)}] {it['path']} ({it['name']})")
def _do_one(i: int, it: dict) -> None:
try: try:
r = crawl_one( r = crawl_one(
client, client,
it, it,
args.out, args.out,
fetch_files=not args.no_files, fetch_files=not args.no_files,
fetch_cover=not args.no_cover,
source_client=source_client_ctx, source_client=source_client_ctx,
pro_source_client=pro_source_client_ctx, pro_source_client=pro_source_client_ctx,
skip_exts=skip_exts, skip_exts=skip_exts,
max_source_mb=args.max_source_mb, max_source_mb=args.max_source_mb,
) )
with print_lock:
print( print(
f" OK: {r.files_count} files, {r.bytes_total / 1024 / 1024:.1f} MB " f"[{i}/{len(items)}] OK {it['path']}: "
f"{r.files_count} files, {r.bytes_total / 1024 / 1024:.1f} MB "
f"(skipped: {len(r.skipped_files)})" f"(skipped: {len(r.skipped_files)})"
) )
except Exception as e: except Exception as e: # noqa: BLE001
print(f" FAIL: {e}", file=sys.stderr) with print_lock:
print(f"[{i}/{len(items)}] FAIL {it['path']}: {e}", file=sys.stderr)
if args.concurrency <= 1:
for i, it in enumerate(items, 1):
_do_one(i, it)
else:
from concurrent.futures import ThreadPoolExecutor, as_completed
with ThreadPoolExecutor(max_workers=args.concurrency) as pool:
futs = [pool.submit(_do_one, i, it) for i, it in enumerate(items, 1)]
for f in as_completed(futs):
f.result()
finally: finally:
if source_client_ctx is not None: if source_client_ctx is not None:
source_client_ctx.close() source_client_ctx.close()

View File

@@ -0,0 +1,21 @@
{
"detail_url": "https://oshwhub.com/xiangyang0926/ke-diao-dian-yuan_copy",
"cover_url": "https://image.lceda.cn/pullimage/Q9gETfMMCdjRKFeGzbtK1kqsl2o5vZ6CUQqBBLXg.jpeg",
"attachments": [
{
"name": "video_210910_180053.mp4",
"url": "https://image.lceda.cn/attachments/2021/9/793PVcgg0vjA9EkX01JzMlnPcwLHed4xsxANMe7l.mp4",
"original_id": "9c65cafa58f54301821248af96ca306d"
},
{
"name": "video_220331_005603.mp4",
"url": "https://image.lceda.cn/attachments/2022/3/vLGeuGiqAVTTaw3Q1B2A8LW8w9xF1AktY6TS8UCT.mp4",
"original_id": "c1df60f8d2a34972b86c0697bb48738d"
},
{
"name": "studio_video_1662741926320.mp4",
"url": "https://image.lceda.cn/attachments/2022/9/K3mO4IAVIiARN0dclyTE94hn2674p5oTMVnyqb17.mp4",
"original_id": "494c6d4535e7496d869b2cad0e4f6ded"
}
]
}

View File

@@ -0,0 +1,11 @@
# 桌面可调电源(经济实惠款)
桌面电源(经济实惠款)
我愿称之为芯龙之光
芯龙全家桶
---
- Source: https://oshwhub.com/xiangyang0926/ke-diao-dian-yuan_copy
- Author: xiangyang0926 (xiangyang0926)
- License: Public Domain
- Published: 2022-09-19T10:11:49.000Z

View File

@@ -0,0 +1,68 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/xiangyang0926/ke-diao-dian-yuan_copy",
"project_id": "0369a515056840798905fdb26359073f",
"title": "桌面可调电源(经济实惠款)",
"description_short": "桌面电源(经济实惠款)\n我愿称之为芯龙之光\n芯龙全家桶",
"description_path": "description.md",
"author": {
"username": "xiangyang0926",
"display_name": "xiangyang0926",
"user_id": "c12b5ac758cb4e5e9a42a6505f9fa9f0"
},
"license": "Public Domain",
"tags": [],
"created_at": "2021-09-03T06:18:08.000Z",
"updated_at": "2026-04-04T03:46:12.000Z",
"published_at": "2022-09-19T10:11:49.000Z",
"crawled_at": "2026-04-28T17:27:33.265974+00:00",
"metrics": {
"likes": 857,
"stars": 1918,
"forks": 766,
"views": 180839,
"watch": 0,
"comments": 314
},
"cover": {
"url": "https://image.lceda.cn/pullimage/Q9gETfMMCdjRKFeGzbtK1kqsl2o5vZ6CUQqBBLXg.jpeg",
"path": null
},
"files": [
{
"name": "video_210910_180053.mp4",
"url": "https://image.lceda.cn/attachments/2021/9/793PVcgg0vjA9EkX01JzMlnPcwLHed4xsxANMe7l.mp4",
"original_id": "9c65cafa58f54301821248af96ca306d",
"ext": "mp4",
"mime": "video/mp4",
"size": 32236477,
"md5": "2414d4e9a8813b17d484218e1d264dfa"
},
{
"name": "video_220331_005603.mp4",
"url": "https://image.lceda.cn/attachments/2022/3/vLGeuGiqAVTTaw3Q1B2A8LW8w9xF1AktY6TS8UCT.mp4",
"original_id": "c1df60f8d2a34972b86c0697bb48738d",
"ext": "mp4",
"mime": "video/mp4",
"size": 10412978,
"md5": "77916109c6b4240014c6ef3841e01ac6"
},
{
"name": "studio_video_1662741926320.mp4",
"url": "https://image.lceda.cn/attachments/2022/9/K3mO4IAVIiARN0dclyTE94hn2674p5oTMVnyqb17.mp4",
"original_id": "494c6d4535e7496d869b2cad0e4f6ded",
"ext": "mp4",
"mime": "video/mp4",
"size": 15204924,
"md5": "a5915439393d38140902b809151e4e9f"
}
],
"raw_fields": {
"path": "xiangyang0926/ke-diao-dian-yuan_copy",
"grade": 3,
"origin": "std",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,91 @@
{
"detail_url": "https://oshwhub.com/bryan_he/usb-ps-v30",
"cover_url": "https://image.lceda.cn/oshwhub/02c786878782461daaea1f2679e947c3.jpg",
"attachments": [
{
"name": "UP_SHELL.stp",
"url": "https://image.lceda.cn/oshwhub/project/attachments/fe24cf66b1ec44ea90ee4f84d8f13579.stp",
"original_id": "e0ab43ef325b407f807f420f4872c500"
},
{
"name": "DW_SHELL.stp",
"url": "https://image.lceda.cn/oshwhub/project/attachments/96c42de256974c499d0f6190a29db656.stp",
"original_id": "7cdef1490b6744cba57dabb5d501b5b6"
},
{
"name": "3D_PRINT_SHELL_2mm.stp",
"url": "https://image.lceda.cn/oshwhub/project/attachments/8526ff7d003d4125beaa279062807f8b.stp",
"original_id": "0fb510d9b7184e47882804eca5bc648f"
},
{
"name": "USB-PS-V3-演示视频.mp4",
"url": "https://image.lceda.cn/oshwhub/project/attachments/f448fff414d44a2081944ccb0f9adaf1.mp4",
"original_id": "a408733f2cbd48c6802d141b3a5272f8"
},
{
"name": "uart2ble_tools .7z",
"url": "https://image.lceda.cn/oshwhub/project/attachments/b10801221297404297f85bd768fd8ebb.7z",
"original_id": "0ff78fffd0b14cd4a05c3286c7d0f546"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V1.1.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/ac463ba72da645f7b902cf85beed3a27.hex",
"original_id": "b1e7bfed2e3447f3ab169d8ccb93c72f"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V1.2.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/64597dd50ce849f3b9956de52f2fa43e.hex",
"original_id": "7085bb6d72cd4269ae8ce57438f95592"
},
{
"name": "USB-PS-V3-煮开水.mp4",
"url": "https://image.lceda.cn/oshwhub/project/attachments/60ab89b45eea4dacba513ccd88c5e3af.mp4",
"original_id": "cac2193764cc44d3b2cd19388cbaa33a"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V2.1-for-HW4.4.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/2ff04fb300ee418b8ea5a25f043f8fdc.hex",
"original_id": "ce45a16319064b70becb4372fd32a116"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V2.3-for-HWV4.4.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/e7514010034442c08cbb10be0755c1e9.hex",
"original_id": "ee1520adb12d4a14868b6e1590dc6e43"
},
{
"name": "小程序演示.mp4",
"url": "https://image.lceda.cn/oshwhub/project/attachments/7be3c8e2229b435084ade0a96b49892d.mp4",
"original_id": "1b957a1a8b1040fe8f93623c340d31d5"
},
{
"name": "基本功能演示.mp4",
"url": "https://image.lceda.cn/oshwhub/project/attachments/af520259599a4665a8fddaf1c494003a.mp4",
"original_id": "fa327881fca94388915e23481596ac12"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V2.4-for-HWV4.4.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/e584a5d2a2034a3199a849d687d5c31d.hex",
"original_id": "d21d07c0335d44719b8edd265bd8e2b0"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V2.6-for-HW4.4.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/7806bc484e394f3c9c6ad4298fdc8460.hex",
"original_id": "c31ea38996f848058d0a3e2cb8b95290"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V2.8-for-HW4.7.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/cfcb951a1aac4c64b3f2062f082adbad.hex",
"original_id": "f19cfe79e680466d8af197d3aaa617a2"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V3.0-for-HW4.7.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/29696e9994f948bbac9972252676e81b.hex",
"original_id": "b56ef1745c074fd7bd9d4dfcf98651df"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V3.1-for-HWV4.7.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/3ba25297e30546b98e0b8802f999adea.hex",
"original_id": "027ac804a8bd4c2483bc4bb8ff2f89aa"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@@ -0,0 +1,9 @@
# USB可调电源V3,硬件V4.7全面升级
USB可调电源,输入防倒灌防反接输出防倒灌支持USB PD3.0BC1.2等DC 5V~27V输入输出电压2V ~ 34V连续可调大于5A的带载能力限流10mA~8A连续可调
---
- Source: https://oshwhub.com/bryan_he/usb-ps-v30
- Author: 黑马小乌龟 (bryan_he)
- License: GPL 3.0
- Published: 2025-03-17T01:45:41.000Z

View File

@@ -0,0 +1,194 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/bryan_he/usb-ps-v30",
"project_id": "03b939e5e6e544408e0879202ebc20ce",
"title": "USB可调电源V3,硬件V4.7全面升级",
"description_short": "USB可调电源,输入防倒灌防反接输出防倒灌支持USB PD3.0BC1.2等DC 5V~27V输入输出电压2V ~ 34V连续可调大于5A的带载能力限流10mA~8A连续可调",
"description_path": "description.md",
"author": {
"username": "bryan_he",
"display_name": "黑马小乌龟",
"user_id": "1eb895ea1970464ba4a8e4a1565b0830"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2024-06-25T12:38:31.001Z",
"updated_at": "2025-12-19T00:37:21.000Z",
"published_at": "2025-03-17T01:45:41.000Z",
"crawled_at": "2026-04-28T17:24:05.511268+00:00",
"metrics": {
"likes": 521,
"stars": 1314,
"forks": 0,
"views": 112947,
"watch": 0,
"comments": 292
},
"cover": {
"url": "https://image.lceda.cn/oshwhub/02c786878782461daaea1f2679e947c3.jpg",
"path": "cover.jpg"
},
"files": [
{
"name": "UP_SHELL.stp",
"url": "https://image.lceda.cn/oshwhub/project/attachments/fe24cf66b1ec44ea90ee4f84d8f13579.stp",
"original_id": "e0ab43ef325b407f807f420f4872c500",
"ext": "stp",
"mime": "application/octet-stream",
"size": 37080,
"md5": "46391556389215c7a533e2f0b32dded4"
},
{
"name": "DW_SHELL.stp",
"url": "https://image.lceda.cn/oshwhub/project/attachments/96c42de256974c499d0f6190a29db656.stp",
"original_id": "7cdef1490b6744cba57dabb5d501b5b6",
"ext": "stp",
"mime": "application/octet-stream",
"size": 181697,
"md5": "3b2271bcaf5433a2ecfafb765a1b4a01"
},
{
"name": "3D_PRINT_SHELL_2mm.stp",
"url": "https://image.lceda.cn/oshwhub/project/attachments/8526ff7d003d4125beaa279062807f8b.stp",
"original_id": "0fb510d9b7184e47882804eca5bc648f",
"ext": "stp",
"mime": "application/octet-stream",
"size": 379237,
"md5": "b9cd6fb7c23c3eaca1ce8c2868494f54"
},
{
"name": "USB-PS-V3-演示视频.mp4",
"url": "https://image.lceda.cn/oshwhub/project/attachments/f448fff414d44a2081944ccb0f9adaf1.mp4",
"original_id": "a408733f2cbd48c6802d141b3a5272f8",
"ext": "mp4",
"mime": "video/mp4",
"size": 44394025,
"md5": "9e9002d5a3b0de4e7f048435b107e073"
},
{
"name": "uart2ble_tools .7z",
"url": "https://image.lceda.cn/oshwhub/project/attachments/b10801221297404297f85bd768fd8ebb.7z",
"original_id": "0ff78fffd0b14cd4a05c3286c7d0f546",
"ext": "7z",
"mime": "application/octet-stream",
"size": 13361594,
"md5": "b3ce346bb3befc4b47486f2abf9ca0d7"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V1.1.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/ac463ba72da645f7b902cf85beed3a27.hex",
"original_id": "b1e7bfed2e3447f3ab169d8ccb93c72f",
"ext": "hex",
"mime": "application/octet-stream",
"size": 173361,
"md5": "6c742c8bd15e7ef199f5d5a658d436a0"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V1.2.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/64597dd50ce849f3b9956de52f2fa43e.hex",
"original_id": "7085bb6d72cd4269ae8ce57438f95592",
"ext": "hex",
"mime": "application/octet-stream",
"size": 176347,
"md5": "0cffe788da3781a1864381f67c33a865"
},
{
"name": "USB-PS-V3-煮开水.mp4",
"url": "https://image.lceda.cn/oshwhub/project/attachments/60ab89b45eea4dacba513ccd88c5e3af.mp4",
"original_id": "cac2193764cc44d3b2cd19388cbaa33a",
"ext": "mp4",
"mime": "video/mp4",
"size": 9279878,
"md5": "550f4291dcee6dc7b2ab9248c6625960"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V2.1-for-HW4.4.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/2ff04fb300ee418b8ea5a25f043f8fdc.hex",
"original_id": "ce45a16319064b70becb4372fd32a116",
"ext": "hex",
"mime": "application/octet-stream",
"size": 176932,
"md5": "33406d408e983132adbe37e246c0c4b2"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V2.3-for-HWV4.4.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/e7514010034442c08cbb10be0755c1e9.hex",
"original_id": "ee1520adb12d4a14868b6e1590dc6e43",
"ext": "hex",
"mime": "application/octet-stream",
"size": 177292,
"md5": "9ce33dd4997a096e196b62624ee1efae"
},
{
"name": "小程序演示.mp4",
"url": "https://image.lceda.cn/oshwhub/project/attachments/7be3c8e2229b435084ade0a96b49892d.mp4",
"original_id": "1b957a1a8b1040fe8f93623c340d31d5",
"ext": "mp4",
"mime": "video/mp4",
"size": 20276522,
"md5": "a34a81a2a7c474872bc37263da662565"
},
{
"name": "基本功能演示.mp4",
"url": "https://image.lceda.cn/oshwhub/project/attachments/af520259599a4665a8fddaf1c494003a.mp4",
"original_id": "fa327881fca94388915e23481596ac12",
"ext": "mp4",
"mime": "video/mp4",
"size": 47608425,
"md5": "11180f5f758e65d899e4214f9db48ed2"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V2.4-for-HWV4.4.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/e584a5d2a2034a3199a849d687d5c31d.hex",
"original_id": "d21d07c0335d44719b8edd265bd8e2b0",
"ext": "hex",
"mime": "application/octet-stream",
"size": 108826,
"md5": "1b926af55f7cbadd0fbf713c5f5f13ce"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V2.6-for-HW4.4.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/7806bc484e394f3c9c6ad4298fdc8460.hex",
"original_id": "c31ea38996f848058d0a3e2cb8b95290",
"ext": "hex",
"mime": "application/octet-stream",
"size": 163027,
"md5": "5755a492e086bd610ec7b0b8c2a4d148"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V2.8-for-HW4.7.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/cfcb951a1aac4c64b3f2062f082adbad.hex",
"original_id": "f19cfe79e680466d8af197d3aaa617a2",
"ext": "hex",
"mime": "application/octet-stream",
"size": 164340,
"md5": "d7767feb84ee9cf32824d20ea677b514"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V3.0-for-HW4.7.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/29696e9994f948bbac9972252676e81b.hex",
"original_id": "b56ef1745c074fd7bd9d4dfcf98651df",
"ext": "hex",
"mime": "application/octet-stream",
"size": 164602,
"md5": "3aed20b0eac62e90d0e2e183e96f7401"
},
{
"name": "AT32F421F8P7-USB-PS-V3-V3.1-for-HWV4.7.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/3ba25297e30546b98e0b8802f999adea.hex",
"original_id": "027ac804a8bd4c2483bc4bb8ff2f89aa",
"ext": "hex",
"mime": "application/octet-stream",
"size": 164639,
"md5": "60ce9754e7e91c52879d1e26675eeddc"
}
],
"raw_fields": {
"path": "bryan_he/usb-ps-v30",
"grade": 4,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,21 @@
{
"detail_url": "https://oshwhub.com/clz1/5.8Ghztu-zhuan",
"cover_url": "https://image.lceda.cn/pullimage/rKZs6yrLjl0v060PRD6pKJvTSms8ezjeh4lIlcq4.jpeg",
"attachments": [
{
"name": "BOM.xls",
"url": "https://image.lceda.cn/attachments/2022/10/kxGEfi0eDAUog7uxyoPzgGfXCJeyGhdp0aCZN4Nz",
"original_id": "82d8af7950774f60a12696da6d7e5228"
},
{
"name": "射频电路设计 理论与应用.pdf",
"url": "https://image.lceda.cn/attachments/2022/10/BCeWSzeoEicDMmYJC4L6C6cpmgJe7Klx1x2Hrope.pdf",
"original_id": "f7b910d03acd455c9d1823a391b7c69f"
},
{
"name": "工程描述.pdf",
"url": "https://image.lceda.cn/attachments/2022/10/OCaxkHG8J74GJz1cymG2H1gPS3hakVGrxE6F0cTt.pdf",
"original_id": "4b126027f64a4510be450cd357a337a3"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

View File

@@ -0,0 +1,9 @@
# 飞行器设计之5.8Ghz图传
此工程主要是进行飞行器的5.8Ghz图传设计实现飞行器上摄像头视频信号的发射。主要包括原理图设计、PCB设计和电路仿真。原理图和PCB设计最多占此工程工作量的30%,电路仿真是非常耗时且繁琐过程。
---
- Source: https://oshwhub.com/clz1/5.8Ghztu-zhuan
- Author: DroneCYF (clz1)
- License: CC-BY-NC-SA 3.0
- Published: 2023-09-11T07:13:46.000Z

View File

@@ -0,0 +1,68 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/clz1/5.8Ghztu-zhuan",
"project_id": "0bc142e0f24e4b06ab6d555f935eca98",
"title": "飞行器设计之5.8Ghz图传",
"description_short": "此工程主要是进行飞行器的5.8Ghz图传设计实现飞行器上摄像头视频信号的发射。主要包括原理图设计、PCB设计和电路仿真。原理图和PCB设计最多占此工程工作量的30%,电路仿真是非常耗时且繁琐过程。",
"description_path": "description.md",
"author": {
"username": "clz1",
"display_name": "DroneCYF",
"user_id": "cf041e4192a545a4a2767f7cde799341"
},
"license": "CC-BY-NC-SA 3.0",
"tags": [],
"created_at": "2022-09-13T02:38:49.000Z",
"updated_at": "2026-01-31T08:24:49.000Z",
"published_at": "2023-09-11T07:13:46.000Z",
"crawled_at": "2026-04-28T17:24:02.041754+00:00",
"metrics": {
"likes": 776,
"stars": 1271,
"forks": 0,
"views": 81317,
"watch": 0,
"comments": 184
},
"cover": {
"url": "https://image.lceda.cn/pullimage/rKZs6yrLjl0v060PRD6pKJvTSms8ezjeh4lIlcq4.jpeg",
"path": "cover.jpeg"
},
"files": [
{
"name": "BOM.xls",
"url": "https://image.lceda.cn/attachments/2022/10/kxGEfi0eDAUog7uxyoPzgGfXCJeyGhdp0aCZN4Nz",
"original_id": "82d8af7950774f60a12696da6d7e5228",
"ext": null,
"mime": "application/vnd.ms-excel",
"size": 27648,
"md5": "c89e770cc91dcffe70b99a481876b80e"
},
{
"name": "射频电路设计 理论与应用.pdf",
"url": "https://image.lceda.cn/attachments/2022/10/BCeWSzeoEicDMmYJC4L6C6cpmgJe7Klx1x2Hrope.pdf",
"original_id": "f7b910d03acd455c9d1823a391b7c69f",
"ext": "pdf",
"mime": "application/pdf",
"size": 2144267,
"md5": "67af74fc9448d1b51b0dbe9ace84f55f"
},
{
"name": "工程描述.pdf",
"url": "https://image.lceda.cn/attachments/2022/10/OCaxkHG8J74GJz1cymG2H1gPS3hakVGrxE6F0cTt.pdf",
"original_id": "4b126027f64a4510be450cd357a337a3",
"ext": "pdf",
"mime": "application/pdf",
"size": 9365415,
"md5": "ea3b5db86bbc0795b39044fd5c0c3172"
}
],
"raw_fields": {
"path": "clz1/5.8Ghztu-zhuan",
"grade": 4,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,31 @@
{
"detail_url": "https://oshwhub.com/lxu0423/lithermal-thermal-imaging-camera",
"cover_url": "https://image.lceda.cn/oshwhub/80e9753174914f49b84889f0d552b457.jpg",
"attachments": [
{
"name": "速览.mp4",
"url": "https://image.lceda.cn/oshwhub/project/attachments/68a0c7c19526423a8d2a9bb936334bcb.mp4",
"original_id": "3d71e1f4b89947c3872c2144532a96bf"
},
{
"name": "相关资料.zip.003",
"url": "https://image.lceda.cn/oshwhub/project/attachments/c323c1ad023c42a6a416cf43570d6b6f.003",
"original_id": "6d5bb3d2313944549f1ee09d3b2f87ef"
},
{
"name": "相关资料.zip.001",
"url": "https://image.lceda.cn/oshwhub/project/attachments/0c1e6378acad41128eefc066f2c1cd0e.001",
"original_id": "76c65c28cd9b49dc8eb6c71c3187055c"
},
{
"name": "相关资料.zip.002",
"url": "https://image.lceda.cn/oshwhub/project/attachments/0aae986e4d344b14a2447e30d680b251.002",
"original_id": "4873e69741e2425797f7f9de38176a59"
},
{
"name": "UDISK.tar",
"url": "https://image.lceda.cn/oshwhub/project/attachments/c52ff45af58c4c75bfb791eba47e9f47.tar",
"original_id": "5ad9f5e1e3744734ba9b435bcb2b1e2a"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 KiB

View File

@@ -0,0 +1,9 @@
# [LiThermal] 热成像相机
基于全志T113-S3和海康威视4117的热成像相机
---
- Source: https://oshwhub.com/lxu0423/lithermal-thermal-imaging-camera
- Author: 小李电子实验室 (lxu0423)
- License: GPL 3.0
- Published: 2024-12-30T01:07:54.000Z

View File

@@ -0,0 +1,86 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/lxu0423/lithermal-thermal-imaging-camera",
"project_id": "126f1a61e36a4e859cd7a0c15ddcefe5",
"title": "[LiThermal] 热成像相机",
"description_short": "基于全志T113-S3和海康威视4117的热成像相机",
"description_path": "description.md",
"author": {
"username": "lxu0423",
"display_name": "小李电子实验室",
"user_id": "19aab6b29e4b41dc8c821d2a6c008f02"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2024-09-09T09:41:55.642Z",
"updated_at": "2025-03-23T22:11:50.000Z",
"published_at": "2024-12-30T01:07:54.000Z",
"crawled_at": "2026-04-28T17:00:38.569166+00:00",
"metrics": {
"likes": 634,
"stars": 1482,
"forks": 0,
"views": 136810,
"watch": 0,
"comments": 575
},
"cover": {
"url": "https://image.lceda.cn/oshwhub/80e9753174914f49b84889f0d552b457.jpg",
"path": "cover.jpg"
},
"files": [
{
"name": "速览.mp4",
"url": "https://image.lceda.cn/oshwhub/project/attachments/68a0c7c19526423a8d2a9bb936334bcb.mp4",
"original_id": "3d71e1f4b89947c3872c2144532a96bf",
"ext": "mp4",
"mime": "video/mp4",
"size": 30705240,
"md5": "4130e7ce9444c34e36ad5c07c30d2a9e"
},
{
"name": "相关资料.zip.003",
"url": "https://image.lceda.cn/oshwhub/project/attachments/c323c1ad023c42a6a416cf43570d6b6f.003",
"original_id": "6d5bb3d2313944549f1ee09d3b2f87ef",
"ext": "003",
"mime": "application/octet-stream",
"size": 6439964,
"md5": "e2b118bca3469aed75c9713d09b1102c"
},
{
"name": "相关资料.zip.001",
"url": "https://image.lceda.cn/oshwhub/project/attachments/0c1e6378acad41128eefc066f2c1cd0e.001",
"original_id": "76c65c28cd9b49dc8eb6c71c3187055c",
"ext": "001",
"mime": "application/octet-stream",
"size": 51380224,
"md5": "a8981a91fac46504d2b1af6e2f160027"
},
{
"name": "相关资料.zip.002",
"url": "https://image.lceda.cn/oshwhub/project/attachments/0aae986e4d344b14a2447e30d680b251.002",
"original_id": "4873e69741e2425797f7f9de38176a59",
"ext": "002",
"mime": "application/octet-stream",
"size": 51380224,
"md5": "f840d2fa5f0c502f87a0192fb5b48e2c"
},
{
"name": "UDISK.tar",
"url": "https://image.lceda.cn/oshwhub/project/attachments/c52ff45af58c4c75bfb791eba47e9f47.tar",
"original_id": "5ad9f5e1e3744734ba9b435bcb2b1e2a",
"ext": "tar",
"mime": "application/x-tar",
"size": 1658880,
"md5": "41cf031e179ba16c248d84a06b1288f6"
}
],
"raw_fields": {
"path": "lxu0423/lithermal-thermal-imaging-camera",
"grade": 4,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,5 @@
{
"detail_url": "https://oshwhub.com/muyan2020/wei-yan-zheng-esp32-guang-fu-pv-mppt-ina226_copy_copy_copy_copy_copy",
"cover_url": "https://image.lceda.cn/pullimage/sCcc8ioGwVkAUqcYR0XUhzEkkIiAcXkAP2Q7rMws.jpeg",
"attachments": []
}

View File

@@ -0,0 +1,9 @@
# ESP32升降压光伏MPPT+数字可调电源
本方案从MPPT降压版本的基础上修改支持降压或者升压通过板载开关及使用专用的程序对升降压进行切换
---
- Source: https://oshwhub.com/muyan2020/wei-yan-zheng-esp32-guang-fu-pv-mppt-ina226_copy_copy_copy_copy_copy
- Author: muyan2020 (muyan2020)
- License: GPL 3.0
- Published: 2023-08-23T08:48:55.000Z

View File

@@ -0,0 +1,40 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/muyan2020/wei-yan-zheng-esp32-guang-fu-pv-mppt-ina226_copy_copy_copy_copy_copy",
"project_id": "13f634be49f647319760111c0f7474fa",
"title": "ESP32升降压光伏MPPT+数字可调电源",
"description_short": "本方案从MPPT降压版本的基础上修改支持降压或者升压通过板载开关及使用专用的程序对升降压进行切换",
"description_path": "description.md",
"author": {
"username": "muyan2020",
"display_name": "muyan2020",
"user_id": "804c0f147cb643f5924aa521873103a2"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2022-09-01T02:07:50.000Z",
"updated_at": "2025-03-15T13:47:26.000Z",
"published_at": "2023-08-23T08:48:55.000Z",
"crawled_at": "2026-04-28T17:28:36.681168+00:00",
"metrics": {
"likes": 316,
"stars": 639,
"forks": 481,
"views": 113514,
"watch": 0,
"comments": 172
},
"cover": {
"url": "https://image.lceda.cn/pullimage/sCcc8ioGwVkAUqcYR0XUhzEkkIiAcXkAP2Q7rMws.jpeg",
"path": null
},
"files": [],
"raw_fields": {
"path": "muyan2020/wei-yan-zheng-esp32-guang-fu-pv-mppt-ina226_copy_copy_copy_copy_copy",
"grade": 4,
"origin": "std",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,11 @@
{
"detail_url": "https://oshwhub.com/45coll/zi-ping-heng-di-lai-luo-san-jiao_10-10-ban-ben",
"cover_url": "https://image.lceda.cn/avatars/2021/11/SkYmC62QJJtGJDvetpAcBmMfeBoVNrbMLB0I8Ocn.png",
"attachments": [
{
"name": "演示视频.mp4",
"url": "https://image.lceda.cn/attachments/2021/11/dyjLDpRavK2NoVUmmmP7deRG6CJnSCnaoJ3wcp24.mp4",
"original_id": "5ea95e588a43449096ac329c4586c439"
}
]
}

View File

@@ -0,0 +1,9 @@
# 自平衡的莱洛三角_esp32_可充电_10*10版本
esp32作为主控5V充3串锂电池可实现摇摆自平衡。
---
- Source: https://oshwhub.com/45coll/zi-ping-heng-di-lai-luo-san-jiao_10-10-ban-ben
- Author: 45coll (45coll)
- License: GPL 3.0
- Published: 2022-07-21T05:23:04.000Z

View File

@@ -0,0 +1,50 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/45coll/zi-ping-heng-di-lai-luo-san-jiao_10-10-ban-ben",
"project_id": "201d355452dc48d988f0ddbd981a8a4d",
"title": "自平衡的莱洛三角_esp32_可充电_10*10版本",
"description_short": "esp32作为主控5V充3串锂电池可实现摇摆自平衡。",
"description_path": "description.md",
"author": {
"username": "45coll",
"display_name": "45coll",
"user_id": "580e8f5f47ef40be8cf8b3b09b3a14f5"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2021-09-28T01:21:48.000Z",
"updated_at": "2026-03-11T09:15:59.000Z",
"published_at": "2022-07-21T05:23:04.000Z",
"crawled_at": "2026-04-28T17:27:41.943262+00:00",
"metrics": {
"likes": 653,
"stars": 1351,
"forks": 535,
"views": 171592,
"watch": 0,
"comments": 178
},
"cover": {
"url": "https://image.lceda.cn/avatars/2021/11/SkYmC62QJJtGJDvetpAcBmMfeBoVNrbMLB0I8Ocn.png",
"path": null
},
"files": [
{
"name": "演示视频.mp4",
"url": "https://image.lceda.cn/attachments/2021/11/dyjLDpRavK2NoVUmmmP7deRG6CJnSCnaoJ3wcp24.mp4",
"original_id": "5ea95e588a43449096ac329c4586c439",
"ext": "mp4",
"mime": "video/mp4",
"size": 31444585,
"md5": "bdc5a31f194291453a383cd388961b88"
}
],
"raw_fields": {
"path": "45coll/zi-ping-heng-di-lai-luo-san-jiao_10-10-ban-ben",
"grade": 4,
"origin": "std",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,41 @@
{
"detail_url": "https://oshwhub.com/bukaiyuan/ESP32-hang-mu-yao-kong-qi",
"cover_url": "https://image.lceda.cn/pullimage/F1q5Xo9lCwwJJ46DYpTFkR3KA8CXI8DGy76ZgKoi.jpeg",
"attachments": [
{
"name": "手柄代码.zip",
"url": "https://image.lceda.cn/attachments/2023/8/5OgNIrJmTWWEgtn6J2pqB7Fh8YR8m2OhZwVZ7ACP.zip",
"original_id": "6a79ed4903c44f5a816e6f00ed3bdffe"
},
{
"name": "遥控器外壳V2.zip",
"url": "https://image.lceda.cn/attachments/2023/8/vutG1sa4z615AmnrFc5feZBKxaVwSvP3D6hP42Zg.zip",
"original_id": "2143750c1e0a4617b62db39b71abfa66"
},
{
"name": "制作PCB文件.zip",
"url": "https://image.lceda.cn/attachments/2023/8/4gIKYGuSGjK8sAoWQWtTihpUeLCMeSJPNNvzOZG9.zip",
"original_id": "93117607af0649d8be117a630da54173"
},
{
"name": "硬件清单.xlsx",
"url": "https://image.lceda.cn/attachments/2023/8/GlvuFE8wIQdIWDN1U8LfSmB6AcjzXr783HP3ypci.xlsx",
"original_id": "2f1045b6624e46c7980810eba83c757c"
},
{
"name": "演示.mp4",
"url": "https://image.lceda.cn/attachments/2023/8/ZzdFaaQI8mu3yiZPBoiwBPLsYvKBgBAs4qAI4F2E.mp4",
"original_id": "4bb9ef96a23f4486b0d54d28617948ee"
},
{
"name": "图标.zip",
"url": "https://image.lceda.cn/attachments/2023/9/qa8XCqOAeJWCDvbFuBtlpg7WOvbuWuuqGVl3130G.zip",
"original_id": "476816c852434f388f9c866f0ad4fa90"
},
{
"name": "遥控器系统框架代码.zip",
"url": "https://image.lceda.cn/attachments/2023/9/TcNec8A1AMbo0VWky0E7a5Wgys4RDU4AVFpTGkOi.zip",
"original_id": "e9f33c590fd8483d9a4ab6f50bc08aec"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 KiB

View File

@@ -0,0 +1,10 @@
# ESP32 万能遥控器
基于ESP32-S3做一个万能的遥控器作为以后各种RC模型机器人的通用控制方案。
还可以蓝牙连接电脑玩游戏,或者在遥控器上玩自己编写的游戏。
---
- Source: https://oshwhub.com/bukaiyuan/ESP32-hang-mu-yao-kong-qi
- Author: 科技大卜玩 (bukaiyuan)
- License: GPL 3.0
- Published: 2023-09-27T05:44:40.000Z

View File

@@ -0,0 +1,104 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/bukaiyuan/ESP32-hang-mu-yao-kong-qi",
"project_id": "2246f96d10b04e94bf3170bb4837d647",
"title": "ESP32 万能遥控器",
"description_short": "基于ESP32-S3做一个万能的遥控器作为以后各种RC模型机器人的通用控制方案。\n还可以蓝牙连接电脑玩游戏或者在遥控器上玩自己编写的游戏。",
"description_path": "description.md",
"author": {
"username": "bukaiyuan",
"display_name": "科技大卜玩",
"user_id": "33524017c335440c83753c5f5dde11c1"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2023-08-01T13:42:52.000Z",
"updated_at": "2026-04-24T01:47:05.000Z",
"published_at": "2023-09-27T05:44:40.000Z",
"crawled_at": "2026-04-28T17:01:11.337592+00:00",
"metrics": {
"likes": 828,
"stars": 1634,
"forks": 0,
"views": 123542,
"watch": 0,
"comments": 191
},
"cover": {
"url": "https://image.lceda.cn/pullimage/F1q5Xo9lCwwJJ46DYpTFkR3KA8CXI8DGy76ZgKoi.jpeg",
"path": "cover.jpeg"
},
"files": [
{
"name": "手柄代码.zip",
"url": "https://image.lceda.cn/attachments/2023/8/5OgNIrJmTWWEgtn6J2pqB7Fh8YR8m2OhZwVZ7ACP.zip",
"original_id": "6a79ed4903c44f5a816e6f00ed3bdffe",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 385138,
"md5": "424e2fdab624f8448e2e9b3a083da923"
},
{
"name": "遥控器外壳V2.zip",
"url": "https://image.lceda.cn/attachments/2023/8/vutG1sa4z615AmnrFc5feZBKxaVwSvP3D6hP42Zg.zip",
"original_id": "2143750c1e0a4617b62db39b71abfa66",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 2988491,
"md5": "d82505c3bb6f8678e13f2691e01a3e12"
},
{
"name": "制作PCB文件.zip",
"url": "https://image.lceda.cn/attachments/2023/8/4gIKYGuSGjK8sAoWQWtTihpUeLCMeSJPNNvzOZG9.zip",
"original_id": "93117607af0649d8be117a630da54173",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 233489,
"md5": "b6e2dbe9eaf70259924d222482468ff6"
},
{
"name": "硬件清单.xlsx",
"url": "https://image.lceda.cn/attachments/2023/8/GlvuFE8wIQdIWDN1U8LfSmB6AcjzXr783HP3ypci.xlsx",
"original_id": "2f1045b6624e46c7980810eba83c757c",
"ext": "xlsx",
"mime": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"size": 15098,
"md5": "36c5fba502b2e9c0c6167771cc6e94ad"
},
{
"name": "演示.mp4",
"url": "https://image.lceda.cn/attachments/2023/8/ZzdFaaQI8mu3yiZPBoiwBPLsYvKBgBAs4qAI4F2E.mp4",
"original_id": "4bb9ef96a23f4486b0d54d28617948ee",
"ext": "mp4",
"mime": "video/mp4",
"size": 31930265,
"md5": "6e09b0c409081dcbb35d8752649d1b38"
},
{
"name": "图标.zip",
"url": "https://image.lceda.cn/attachments/2023/9/qa8XCqOAeJWCDvbFuBtlpg7WOvbuWuuqGVl3130G.zip",
"original_id": "476816c852434f388f9c866f0ad4fa90",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 311221,
"md5": "0621781a294041163626dac760fdab56"
},
{
"name": "遥控器系统框架代码.zip",
"url": "https://image.lceda.cn/attachments/2023/9/TcNec8A1AMbo0VWky0E7a5Wgys4RDU4AVFpTGkOi.zip",
"original_id": "e9f33c590fd8483d9a4ab6f50bc08aec",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 1065473,
"md5": "604e7caf303dcd8bcc6ebfab4dcdec64"
}
],
"raw_fields": {
"path": "bukaiyuan/ESP32-hang-mu-yao-kong-qi",
"grade": 3,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,5 @@
{
"detail_url": "https://oshwhub.com/OSHWHubkai-yuan-ying-jian/li-chuangeda-chi-zi",
"cover_url": "https://image.lceda.cn/avatars/2019/10/hHC7BjrPKr531ZhNUxlskERviQATlXmSTbjH2IM8.jpeg",
"attachments": []
}

View File

@@ -0,0 +1,9 @@
# 立创EDA尺子PCB直尺
立创EDA官方使用立创EDA设计的PCB尺子喜欢可以直接在嘉立创下单生产
---
- Source: https://oshwhub.com/OSHWHubkai-yuan-ying-jian/li-chuangeda-chi-zi
- Author: OSHWHub开源硬件 (OSHWHubkai-yuan-ying-jian)
- License: GPL 3.0
- Published: 2023-03-22T09:43:20.000Z

View File

@@ -0,0 +1,45 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/OSHWHubkai-yuan-ying-jian/li-chuangeda-chi-zi",
"project_id": "29ff00b5fc83498681271320e8855bc7",
"title": "立创EDA尺子PCB直尺",
"description_short": "立创EDA官方使用立创EDA设计的PCB尺子喜欢可以直接在嘉立创下单生产",
"description_path": "description.md",
"author": {
"username": "OSHWHubkai-yuan-ying-jian",
"display_name": "OSHWHub开源硬件",
"user_id": "b891f6552c9941cf8931dfaefd81fca1"
},
"license": "GPL 3.0",
"tags": [
"立创EDA",
"OSHWHub",
"开源硬件",
"PCB尺子"
],
"created_at": "2019-10-28T08:21:21.000Z",
"updated_at": "2026-03-03T01:53:42.000Z",
"published_at": "2023-03-22T09:43:20.000Z",
"crawled_at": "2026-04-28T17:27:38.530647+00:00",
"metrics": {
"likes": 663,
"stars": 1233,
"forks": 1550,
"views": 157579,
"watch": 0,
"comments": 99
},
"cover": {
"url": "https://image.lceda.cn/avatars/2019/10/hHC7BjrPKr531ZhNUxlskERviQATlXmSTbjH2IM8.jpeg",
"path": null
},
"files": [],
"raw_fields": {
"path": "OSHWHubkai-yuan-ying-jian/li-chuangeda-chi-zi",
"grade": 3,
"origin": "std",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,11 @@
{
"detail_url": "https://oshwhub.com/z_star/zynq7020-core-board-and-various-rf-modules",
"cover_url": "https://image.lceda.cn/pullimage/kIcEEUbe0wdv3WwOSfGTZD6PCBvrU3Zomxe6voan.jpeg",
"attachments": [
{
"name": "ZYNQ从FLASH启动RGB灯程序.mp4",
"url": "https://image.lceda.cn/attachments/2024/1/EoyKqr4QvaBtKuGN1IvKzJkhlaERv4ieQOjj7hCf.mp4",
"original_id": "2fa7c8f1e02848d0a48c5eb377b015f6"
}
]
}

View File

@@ -0,0 +1,9 @@
# ZYNQ7020核心板及各种射频模块
ZYNQ7020核心板主体最低成本仅需90元、170MSPSADC、210MSPSDAC、1.6GSPS 16bit DAC、9GHz PLL、500MSPS 12bit ADC等
---
- Source: https://oshwhub.com/z_star/zynq7020-core-board-and-various-rf-modules
- Author: 上电冒烟 (z_star)
- License: CC BY 3.0
- Published: 2024-01-25T15:57:56.000Z

View File

@@ -0,0 +1,50 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/z_star/zynq7020-core-board-and-various-rf-modules",
"project_id": "2f01fdb9fbaf499f8b537081ce3e4a66",
"title": "ZYNQ7020核心板及各种射频模块",
"description_short": "ZYNQ7020核心板主体最低成本仅需90元、170MSPSADC、210MSPSDAC、1.6GSPS 16bit DAC、9GHz PLL、500MSPS 12bit ADC等",
"description_path": "description.md",
"author": {
"username": "z_star",
"display_name": "上电冒烟",
"user_id": "63725c4e64e5478099fa821cabcea5b5"
},
"license": "CC BY 3.0",
"tags": [],
"created_at": "2024-01-13T04:25:36.000Z",
"updated_at": "2025-12-19T01:07:08.000Z",
"published_at": "2024-01-25T15:57:56.000Z",
"crawled_at": "2026-04-28T17:27:31.891283+00:00",
"metrics": {
"likes": 599,
"stars": 1139,
"forks": 0,
"views": 98534,
"watch": 0,
"comments": 233
},
"cover": {
"url": "https://image.lceda.cn/pullimage/kIcEEUbe0wdv3WwOSfGTZD6PCBvrU3Zomxe6voan.jpeg",
"path": null
},
"files": [
{
"name": "ZYNQ从FLASH启动RGB灯程序.mp4",
"url": "https://image.lceda.cn/attachments/2024/1/EoyKqr4QvaBtKuGN1IvKzJkhlaERv4ieQOjj7hCf.mp4",
"original_id": "2fa7c8f1e02848d0a48c5eb377b015f6",
"ext": "mp4",
"mime": "video/mp4",
"size": 25222219,
"md5": "f618054866a257be44e702e4e4d9cb5e"
}
],
"raw_fields": {
"path": "z_star/zynq7020-core-board-and-various-rf-modules",
"grade": 4,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,11 @@
{
"detail_url": "https://oshwhub.com/eda_sbnvoqqej/kai-yuan-si-zhou-yao-kong-qi",
"cover_url": "https://image.lceda.cn/oshwhub/332fcccb25b74f399d86a695f3334304.png",
"attachments": [
{
"name": "遥控器源码.zip",
"url": "https://image.lceda.cn/attachments/2020/3/McJ3dH36b9b7bxPaJYHprH7PTNq1IL4zp3VxYzog.zip",
"original_id": "0136c0f3930f40a8a4f1e6e7ff5b1050"
}
]
}

View File

@@ -0,0 +1,9 @@
# 【开源】STM32四轴遥控器
基于小马哥RoboFly开源四轴制作的四轴遥控器。
---
- Source: https://oshwhub.com/eda_sbnvoqqej/kai-yuan-si-zhou-yao-kong-qi
- Author: 酷电科技馆 (eda_sbnvoqqej)
- License: GPL 3.0
- Published: 2024-07-15T01:07:12.000Z

View File

@@ -0,0 +1,50 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/eda_sbnvoqqej/kai-yuan-si-zhou-yao-kong-qi",
"project_id": "3bec6b84391a4004b115d7d4f1a2e193",
"title": "【开源】STM32四轴遥控器",
"description_short": "基于小马哥RoboFly开源四轴制作的四轴遥控器。",
"description_path": "description.md",
"author": {
"username": "eda_sbnvoqqej",
"display_name": "酷电科技馆",
"user_id": "1a209b6e71d9418b95d7ffe9e2e14b1f"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2020-03-26T05:52:33.000Z",
"updated_at": "2026-02-02T12:11:41.000Z",
"published_at": "2024-07-15T01:07:12.000Z",
"crawled_at": "2026-04-28T17:29:04.147150+00:00",
"metrics": {
"likes": 292,
"stars": 892,
"forks": 573,
"views": 71178,
"watch": 0,
"comments": 188
},
"cover": {
"url": "https://image.lceda.cn/oshwhub/332fcccb25b74f399d86a695f3334304.png",
"path": null
},
"files": [
{
"name": "遥控器源码.zip",
"url": "https://image.lceda.cn/attachments/2020/3/McJ3dH36b9b7bxPaJYHprH7PTNq1IL4zp3VxYzog.zip",
"original_id": "0136c0f3930f40a8a4f1e6e7ff5b1050",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 5385770,
"md5": "1387d4a169122742dc9afadc6a9900e6"
}
],
"raw_fields": {
"path": "eda_sbnvoqqej/kai-yuan-si-zhou-yao-kong-qi",
"grade": 3,
"origin": "std",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,46 @@
{
"detail_url": "https://oshwhub.com/yangzen/xing-huo-ji-hua-zui-gai-17-4-chu-mo-ji-xie-jian-pan-pro",
"cover_url": "https://image.lceda.cn/pullimage/CNLYX16K1KVs8dV2DftiiriK7beCyFGqOqwhB0rZ.jpeg",
"attachments": [
{
"name": "改键上位机V4.zip",
"url": "https://image.lceda.cn/attachments/2022/11/93XSpvEPVQrkz9y57RwO9QBchpyfut1u8DFjupmf.zip",
"original_id": "9d8f29b9bbd747cf94e45d906026d6d7"
},
{
"name": "丐17+4TPRO_Ver193.hex",
"url": "https://image.lceda.cn/attachments/2023/1/SRsbvzcW5A4NUuXEJ2ZbmKjQGl6kvlGP7REhLnWG.txt",
"original_id": "e4bc223e7fc14c86827752ea604cf7cd"
},
{
"name": "17键RGB键盘程序Ver1.93.zip",
"url": "https://image.lceda.cn/attachments/2023/2/HF87gb1qc0G86j6PZhgKa8UW6JOpj8Br4hAY6aLp.zip",
"original_id": "0b5e2c46025b4552b9368460e024f0bf"
},
{
"name": "丐17+4TPRO_Ver19F.hex",
"url": "https://image.lceda.cn/attachments/2023/4/twznraIbGygqNvixQTnE1BFMk79wAXrbRJL2GILX.txt",
"original_id": "671e946695734c3293717194b3355dfb"
},
{
"name": "丐17+4TPRO_Ver200.hex",
"url": "https://image.lceda.cn/attachments/2023/8/s5bGfVrLHt11CUmiODFmvRqvcBxB2NYGO3oTHyrz.txt",
"original_id": "783d613a70ca45e786da04865e9018fe"
},
{
"name": "丐17+4TPRO_Ver201.hex",
"url": "https://image.lceda.cn/attachments/2023/8/mw1i3TcYfyNcu3CQ7gF93Hkh9bOvvlpqWNkBpS5w.txt",
"original_id": "3a0b1b97e6ee4b6184739c081866bad2"
},
{
"name": "丐17+4TPRO_Ver2519.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/23349b7205be4d7ba3d8a4913628f495.hex",
"original_id": "0f17dbb237e24cd097c77c83cda096b1"
},
{
"name": "丐17+4TPRO_Ver2541.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/0a35f2cc9cc7475abce7436804f619e6.hex",
"original_id": "de023c4bdea345cb97cb17141c343161"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 KiB

View File

@@ -0,0 +1,12 @@
# 最丐17+4TPRO机械键盘
2025年10月11日稳定性更新
1. 修复上报32位坐标溢出的问题
2. 每次W11_LAMP更新时切换到在线模式
3. 屏蔽休眠恢复后的重加载功能
---
- Source: https://oshwhub.com/yangzen/xing-huo-ji-hua-zui-gai-17-4-chu-mo-ji-xie-jian-pan-pro
- Author: 画板当吃生菜 (yangzen)
- License: GPL 3.0
- Published: 2025-10-11T03:00:53.000Z

View File

@@ -0,0 +1,113 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/yangzen/xing-huo-ji-hua-zui-gai-17-4-chu-mo-ji-xie-jian-pan-pro",
"project_id": "3e3c7725251c4456ad91cd88308944ff",
"title": "最丐17+4TPRO机械键盘",
"description_short": "2025年10月11日稳定性更新 \n1. 修复上报32位坐标溢出的问题\n2. 每次W11_LAMP更新时切换到在线模式\n3. 屏蔽休眠恢复后的重加载功能",
"description_path": "description.md",
"author": {
"username": "yangzen",
"display_name": "画板当吃生菜",
"user_id": "235e0ca983624789a6f0492cd5a4b512"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2022-06-09T02:30:50.000Z",
"updated_at": "2025-12-28T05:40:29.000Z",
"published_at": "2025-10-11T03:00:53.000Z",
"crawled_at": "2026-04-28T17:13:44.770120+00:00",
"metrics": {
"likes": 685,
"stars": 1124,
"forks": 0,
"views": 150162,
"watch": 0,
"comments": 376
},
"cover": {
"url": "https://image.lceda.cn/pullimage/CNLYX16K1KVs8dV2DftiiriK7beCyFGqOqwhB0rZ.jpeg",
"path": "cover.jpeg"
},
"files": [
{
"name": "改键上位机V4.zip",
"url": "https://image.lceda.cn/attachments/2022/11/93XSpvEPVQrkz9y57RwO9QBchpyfut1u8DFjupmf.zip",
"original_id": "9d8f29b9bbd747cf94e45d906026d6d7",
"ext": "zip",
"mime": "application/zip",
"size": 593589,
"md5": "8e836910c147b0560ca65c81d41513d4"
},
{
"name": "丐17+4TPRO_Ver193.hex",
"url": "https://image.lceda.cn/attachments/2023/1/SRsbvzcW5A4NUuXEJ2ZbmKjQGl6kvlGP7REhLnWG.txt",
"original_id": "e4bc223e7fc14c86827752ea604cf7cd",
"ext": "txt",
"mime": "application/octet-stream",
"size": 33804,
"md5": "8b07d40405428566f2dec1490e30384d"
},
{
"name": "17键RGB键盘程序Ver1.93.zip",
"url": "https://image.lceda.cn/attachments/2023/2/HF87gb1qc0G86j6PZhgKa8UW6JOpj8Br4hAY6aLp.zip",
"original_id": "0b5e2c46025b4552b9368460e024f0bf",
"ext": "zip",
"mime": "application/zip",
"size": 47992,
"md5": "c9905e3373b7dc727b5f9b02aed36198"
},
{
"name": "丐17+4TPRO_Ver19F.hex",
"url": "https://image.lceda.cn/attachments/2023/4/twznraIbGygqNvixQTnE1BFMk79wAXrbRJL2GILX.txt",
"original_id": "671e946695734c3293717194b3355dfb",
"ext": "txt",
"mime": "application/octet-stream",
"size": 29393,
"md5": "3828a78e301ce2a28cf88b142b931656"
},
{
"name": "丐17+4TPRO_Ver200.hex",
"url": "https://image.lceda.cn/attachments/2023/8/s5bGfVrLHt11CUmiODFmvRqvcBxB2NYGO3oTHyrz.txt",
"original_id": "783d613a70ca45e786da04865e9018fe",
"ext": "txt",
"mime": "application/octet-stream",
"size": 30913,
"md5": "732013563625496929b7d5ca408029dc"
},
{
"name": "丐17+4TPRO_Ver201.hex",
"url": "https://image.lceda.cn/attachments/2023/8/mw1i3TcYfyNcu3CQ7gF93Hkh9bOvvlpqWNkBpS5w.txt",
"original_id": "3a0b1b97e6ee4b6184739c081866bad2",
"ext": "txt",
"mime": "application/octet-stream",
"size": 31677,
"md5": "b286cb48d7d704bedb5b5129cb0bb955"
},
{
"name": "丐17+4TPRO_Ver2519.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/23349b7205be4d7ba3d8a4913628f495.hex",
"original_id": "0f17dbb237e24cd097c77c83cda096b1",
"ext": "hex",
"mime": "application/octet-stream",
"size": 35760,
"md5": "ce768133ebc8a57603d7d3af37e06595"
},
{
"name": "丐17+4TPRO_Ver2541.hex",
"url": "https://image.lceda.cn/oshwhub/project/attachments/0a35f2cc9cc7475abce7436804f619e6.hex",
"original_id": "de023c4bdea345cb97cb17141c343161",
"ext": "hex",
"mime": "application/octet-stream",
"size": 36458,
"md5": "00a2ffbce457ae23154d5af48bb57043"
}
],
"raw_fields": {
"path": "yangzen/xing-huo-ji-hua-zui-gai-17-4-chu-mo-ji-xie-jian-pan-pro",
"grade": 3,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,5 @@
{
"detail_url": "https://oshwhub.com/wzw666/ip5389",
"cover_url": "https://image.lceda.cn/avatars/2021/10/GzDiNwDZSinZ1pfr44sY5cLLFIK0CGAKHSMmMJkK.png",
"attachments": []
}

View File

@@ -0,0 +1,9 @@
# IP5389[100瓦双向快充移动电源方案]
100瓦双向快充移动电源方案
---
- Source: https://oshwhub.com/wzw666/ip5389
- Author: 小煜哥哥 (wzw666)
- License: CC-BY-NC-SA 3.0
- Published: 2022-09-13T01:15:55.000Z

View File

@@ -0,0 +1,40 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/wzw666/ip5389",
"project_id": "48dd1b650d084739bef92ab8a651975a",
"title": "IP5389[100瓦双向快充移动电源方案]",
"description_short": "100瓦双向快充移动电源方案",
"description_path": "description.md",
"author": {
"username": "wzw666",
"display_name": "小煜哥哥",
"user_id": "67f4ab719a2a4182934deee8cc979e93"
},
"license": "CC-BY-NC-SA 3.0",
"tags": [],
"created_at": "2021-09-09T10:36:14.000Z",
"updated_at": "2026-04-15T05:31:09.000Z",
"published_at": "2022-09-13T01:15:55.000Z",
"crawled_at": "2026-04-28T17:28:24.081470+00:00",
"metrics": {
"likes": 368,
"stars": 778,
"forks": 341,
"views": 121491,
"watch": 0,
"comments": 205
},
"cover": {
"url": "https://image.lceda.cn/avatars/2021/10/GzDiNwDZSinZ1pfr44sY5cLLFIK0CGAKHSMmMJkK.png",
"path": null
},
"files": [],
"raw_fields": {
"path": "wzw666/ip5389",
"grade": 3,
"origin": "std",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,26 @@
{
"detail_url": "https://oshwhub.com/Kirito/usb3-0-wang-ka-rtl8153b",
"cover_url": "https://image.lceda.cn/pullimage/k50OonL2mnyuvO11hkTcXaehnWoD76WFjPljTOVi.jpeg",
"attachments": [
{
"name": "VID_20211116_190318.mp4",
"url": "https://image.lceda.cn/attachments/2021/11/ZLbCJftJSo7wYs9T1r1tPkLPAQJi4ujAmBDZ9nyh.mp4",
"original_id": "c8cec70a7edf4bcb8b64838c11c3e28d"
},
{
"name": "RTL网卡驱动Windows+Linux系统.rar",
"url": "https://image.lceda.cn/attachments/2021/11/yhMp3UDkmZSQ0KF8xS9wLhyoswY5XGlGpAw3UvYg.rar",
"original_id": "3e1d32f8853040849f613b7ed0e81cb6"
},
{
"name": "RTL8153B-VB-CG_Datasheet_1.4.pdf",
"url": "https://image.lceda.cn/attachments/2021/11/sA8zbB0lUgY6d2eRMxYs4OhUakikILZNCmPnblHH.pdf",
"original_id": "0100985d34d74d6285098b4413931a1a"
},
{
"name": "realtek_usb_lan_tool.zip",
"url": "https://image.lceda.cn/attachments/2021/12/MQOAICWSE94IAT1qcKq7pYlK5H1rOSNFyekyIXqm.zip",
"original_id": "aa77c2f61cc34774bf92fcaff55f7992"
}
]
}

View File

@@ -0,0 +1,9 @@
# USB3.0千兆网卡-RTL8153B
这是基于RTL8153B的千兆USB网卡。
---
- Source: https://oshwhub.com/Kirito/usb3-0-wang-ka-rtl8153b
- Author: Kirito (Kirito)
- License: GPL 3.0
- Published: 2022-07-21T07:48:13.000Z

View File

@@ -0,0 +1,77 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/Kirito/usb3-0-wang-ka-rtl8153b",
"project_id": "4f06b185aae542eb94497acef0a9144b",
"title": "USB3.0千兆网卡-RTL8153B",
"description_short": "这是基于RTL8153B的千兆USB网卡。",
"description_path": "description.md",
"author": {
"username": "Kirito",
"display_name": "Kirito",
"user_id": "3dc72a434ae74b968d0478d4a9c8724f"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2021-10-01T04:09:54.000Z",
"updated_at": "2025-12-19T01:09:08.000Z",
"published_at": "2022-07-21T07:48:13.000Z",
"crawled_at": "2026-04-28T17:30:09.689983+00:00",
"metrics": {
"likes": 388,
"stars": 808,
"forks": 290,
"views": 80860,
"watch": 0,
"comments": 240
},
"cover": {
"url": "https://image.lceda.cn/pullimage/k50OonL2mnyuvO11hkTcXaehnWoD76WFjPljTOVi.jpeg",
"path": null
},
"files": [
{
"name": "VID_20211116_190318.mp4",
"url": "https://image.lceda.cn/attachments/2021/11/ZLbCJftJSo7wYs9T1r1tPkLPAQJi4ujAmBDZ9nyh.mp4",
"original_id": "c8cec70a7edf4bcb8b64838c11c3e28d",
"ext": "mp4",
"mime": "video/mp4",
"size": 28159575,
"md5": "65c44e684e187cf42dfa1c6e356d2813"
},
{
"name": "RTL网卡驱动Windows+Linux系统.rar",
"url": "https://image.lceda.cn/attachments/2021/11/yhMp3UDkmZSQ0KF8xS9wLhyoswY5XGlGpAw3UvYg.rar",
"original_id": "3e1d32f8853040849f613b7ed0e81cb6",
"ext": "rar",
"mime": "application/octet-stream",
"size": 35634375,
"md5": "f55bdf4b4808b3c3b0302cfaaf4cdebf"
},
{
"name": "RTL8153B-VB-CG_Datasheet_1.4.pdf",
"url": "https://image.lceda.cn/attachments/2021/11/sA8zbB0lUgY6d2eRMxYs4OhUakikILZNCmPnblHH.pdf",
"original_id": "0100985d34d74d6285098b4413931a1a",
"ext": "pdf",
"mime": "application/pdf",
"size": 2036736,
"md5": "fe0a6de4bf5e57133c6067fc016112eb"
},
{
"name": "realtek_usb_lan_tool.zip",
"url": "https://image.lceda.cn/attachments/2021/12/MQOAICWSE94IAT1qcKq7pYlK5H1rOSNFyekyIXqm.zip",
"original_id": "aa77c2f61cc34774bf92fcaff55f7992",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 18027580,
"md5": "3ff5a8499dcb1e850d2c564aa1e9aca2"
}
],
"raw_fields": {
"path": "Kirito/usb3-0-wang-ka-rtl8153b",
"grade": 3,
"origin": "std",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,36 @@
{
"detail_url": "https://oshwhub.com/myzhazha/esp32s3_86-kai-fa-ban",
"cover_url": "https://image.lceda.cn/pullimage/qbr0oZSUa25qiNIioPT4PUzSCSwWAuzERX8WnuHC.jpeg",
"attachments": [
{
"name": "外壳模型_打印用.zip",
"url": "https://image.lceda.cn/attachments/2022/12/kMxCuSpay5aq9JegFyburT7xCJjxgkqF6z7MQYvC.zip",
"original_id": "c9b528d9d012433e83306e23ef58bc0b"
},
{
"name": "Video_x264.mp4",
"url": "https://image.lceda.cn/attachments/2023/1/WeeCzShnEc6RtwHbsc5jybhJzmbmkbP7uTE6IACN.mp4",
"original_id": "90ffcd04132a4304854af83ae0884813"
},
{
"name": "音乐播放demo所需歌曲+歌词文件.rar",
"url": "https://image.lceda.cn/attachments/2023/6/wgIxElIEbpUah8IZqJce1Qner6QGvcEky3EbCtcI.rar",
"original_id": "0429db0c9b184c7584592c6b8ca78255"
},
{
"name": "所需库文件.rar",
"url": "https://image.lceda.cn/attachments/2023/7/yQgcZC2XZJKKREKgCwBxCD3tMyNclbGA3tdPR9nX.rar",
"original_id": "02e1f455212e4ea8b1595acc1e435a11"
},
{
"name": "DEMO.rar",
"url": "https://image.lceda.cn/attachments/2023/9/aoNveNkArCVxFuoQ583SEzrygtmxFZLwncYjhedx.rar",
"original_id": "90dea25d84194ed1bcc8f8c212f4efbb"
},
{
"name": "多合一固件.zip",
"url": "https://image.lceda.cn/attachments/2024/1/TqhcSDFeIpphwpxrI1dNn38FkyHbqME6kg2mb3FO.zip",
"original_id": "f7dfd2d9814a4ab48fb3d2907c353019"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 826 KiB

View File

@@ -0,0 +1,9 @@
# ESP32S3 86盒开发板 带触摸
使用ESP32S3N8R8作为主控的86面板开发板带触摸带扬声器可用于86面板开发LVGL开发
---
- Source: https://oshwhub.com/myzhazha/esp32s3_86-kai-fa-ban
- Author: 小渣渣 (myzhazha)
- License: GPL 3.0
- Published: 2024-01-02T02:06:18.000Z

View File

@@ -0,0 +1,95 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/myzhazha/esp32s3_86-kai-fa-ban",
"project_id": "53e6c236b9d14e74944e460ac11c7c1d",
"title": "ESP32S3 86盒开发板 带触摸",
"description_short": "使用ESP32S3N8R8作为主控的86面板开发板带触摸带扬声器可用于86面板开发LVGL开发",
"description_path": "description.md",
"author": {
"username": "myzhazha",
"display_name": "小渣渣",
"user_id": "26fa92c7af6f431490e2da8805f1d791"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2022-09-01T09:15:36.000Z",
"updated_at": "2025-12-29T06:58:15.000Z",
"published_at": "2024-01-02T02:06:18.000Z",
"crawled_at": "2026-04-28T17:01:38.044590+00:00",
"metrics": {
"likes": 666,
"stars": 1419,
"forks": 0,
"views": 141262,
"watch": 0,
"comments": 325
},
"cover": {
"url": "https://image.lceda.cn/pullimage/qbr0oZSUa25qiNIioPT4PUzSCSwWAuzERX8WnuHC.jpeg",
"path": "cover.jpeg"
},
"files": [
{
"name": "外壳模型_打印用.zip",
"url": "https://image.lceda.cn/attachments/2022/12/kMxCuSpay5aq9JegFyburT7xCJjxgkqF6z7MQYvC.zip",
"original_id": "c9b528d9d012433e83306e23ef58bc0b",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 88416,
"md5": "39563ddb5b5a4a22ccb4d047a9d7aa5a"
},
{
"name": "Video_x264.mp4",
"url": "https://image.lceda.cn/attachments/2023/1/WeeCzShnEc6RtwHbsc5jybhJzmbmkbP7uTE6IACN.mp4",
"original_id": "90ffcd04132a4304854af83ae0884813",
"ext": "mp4",
"mime": "video/mp4",
"size": 31433231,
"md5": "4935ce6a03a695bef0c7ea4489aa2afa"
},
{
"name": "音乐播放demo所需歌曲+歌词文件.rar",
"url": "https://image.lceda.cn/attachments/2023/6/wgIxElIEbpUah8IZqJce1Qner6QGvcEky3EbCtcI.rar",
"original_id": "0429db0c9b184c7584592c6b8ca78255",
"ext": "rar",
"mime": "application/octet-stream",
"size": 39480048,
"md5": "719df066f48e4dc799e767ef06619b2d"
},
{
"name": "所需库文件.rar",
"url": "https://image.lceda.cn/attachments/2023/7/yQgcZC2XZJKKREKgCwBxCD3tMyNclbGA3tdPR9nX.rar",
"original_id": "02e1f455212e4ea8b1595acc1e435a11",
"ext": "rar",
"mime": "application/octet-stream",
"size": 48938076,
"md5": "4ae8fe7350f4cb282ecb4e60f7e6cd74"
},
{
"name": "DEMO.rar",
"url": "https://image.lceda.cn/attachments/2023/9/aoNveNkArCVxFuoQ583SEzrygtmxFZLwncYjhedx.rar",
"original_id": "90dea25d84194ed1bcc8f8c212f4efbb",
"ext": "rar",
"mime": "application/octet-stream",
"size": 3217239,
"md5": "132e348e4573fd67ccb9a54e9e4d3491"
},
{
"name": "多合一固件.zip",
"url": "https://image.lceda.cn/attachments/2024/1/TqhcSDFeIpphwpxrI1dNn38FkyHbqME6kg2mb3FO.zip",
"original_id": "f7dfd2d9814a4ab48fb3d2907c353019",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 19132490,
"md5": "d94418a0996d2e3da712cde25b21ddff"
}
],
"raw_fields": {
"path": "myzhazha/esp32s3_86-kai-fa-ban",
"grade": 4,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,26 @@
{
"detail_url": "https://oshwhub.com/course-examples/yi-qi-yi-biao-jian-yi-shu-zi-shi-bo-qi-she-ji-cha-jian-ban",
"cover_url": "https://image.lceda.cn/pullimage/vZ4gYlm4aPajQfTGsAfyIPsZu12NXrt3CZIDGgGx.jpeg",
"attachments": [
{
"name": "简易数字示波器焊接文档.pdf",
"url": "https://image.lceda.cn/attachments/2024/1/kxWXt8GSAQ8m7qzU4GvzzPgvxt3mFEBf8VAnQUxn.pdf",
"original_id": "3ce9b9717a674de1a37984091d7af240"
},
{
"name": "物料清单-简易数字示波器.xlsx",
"url": "https://image.lceda.cn/attachments/2024/1/HWVhBxnWjIL06wyudbUSIlaQjCMn1HyjBhldkK2Q.bin",
"original_id": "5f5bee4bbeb64bd088c507c5666c0d9e"
},
{
"name": "PCB焊接辅助工具-简易数字示波器V1.2.html",
"url": "https://image.lceda.cn/attachments/2024/1/9NgRZm8f6DeFWEJuZrEAqwWCDmlEEJMf9GHYpRJz.html",
"original_id": "02c7b147329b458aa3d0079ccef6cae7"
},
{
"name": "简易数字示波器-装配图.pdf",
"url": "https://image.lceda.cn/oshwhub/project/attachments/4ef4a80fb8bc40ce9fe6de7bde763661.pdf",
"original_id": "5b5b0535cdb74cbc9342e99f2b73aa14"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 KiB

View File

@@ -0,0 +1,9 @@
# 简易数字示波器设计(入门版)
打造一套针对电子爱好者及学生学习数字示波器的基础项目,以单片机核心板与插件元器件结合起来,十分适合入门学习!
---
- Source: https://oshwhub.com/course-examples/yi-qi-yi-biao-jian-yi-shu-zi-shi-bo-qi-she-ji-cha-jian-ban
- Author: EDA课程案例团队 (course-examples)
- License: GPL 3.0
- Published: 2026-01-16T09:07:45.000Z

View File

@@ -0,0 +1,77 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/course-examples/yi-qi-yi-biao-jian-yi-shu-zi-shi-bo-qi-she-ji-cha-jian-ban",
"project_id": "5e03b6545745463bb8b64813209ffb8c",
"title": "简易数字示波器设计(入门版)",
"description_short": "打造一套针对电子爱好者及学生学习数字示波器的基础项目,以单片机核心板与插件元器件结合起来,十分适合入门学习!",
"description_path": "description.md",
"author": {
"username": "course-examples",
"display_name": "EDA课程案例团队",
"user_id": "ebbda44292b4423b92db6e999d50f4d4"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2023-12-25T08:15:57.000Z",
"updated_at": "2026-04-05T03:44:46.000Z",
"published_at": "2026-01-16T09:07:45.000Z",
"crawled_at": "2026-04-28T17:00:16.524061+00:00",
"metrics": {
"likes": 708,
"stars": 1824,
"forks": 0,
"views": 199957,
"watch": 0,
"comments": 390
},
"cover": {
"url": "https://image.lceda.cn/pullimage/vZ4gYlm4aPajQfTGsAfyIPsZu12NXrt3CZIDGgGx.jpeg",
"path": "cover.jpeg"
},
"files": [
{
"name": "简易数字示波器焊接文档.pdf",
"url": "https://image.lceda.cn/attachments/2024/1/kxWXt8GSAQ8m7qzU4GvzzPgvxt3mFEBf8VAnQUxn.pdf",
"original_id": "3ce9b9717a674de1a37984091d7af240",
"ext": "pdf",
"mime": "application/pdf",
"size": 731912,
"md5": "f862eee2ead48f505435c87419e49811"
},
{
"name": "物料清单-简易数字示波器.xlsx",
"url": "https://image.lceda.cn/attachments/2024/1/HWVhBxnWjIL06wyudbUSIlaQjCMn1HyjBhldkK2Q.bin",
"original_id": "5f5bee4bbeb64bd088c507c5666c0d9e",
"ext": "bin",
"mime": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"size": 11632,
"md5": "94b7687aba7469bcc3cc1a4f6b552c57"
},
{
"name": "PCB焊接辅助工具-简易数字示波器V1.2.html",
"url": "https://image.lceda.cn/attachments/2024/1/9NgRZm8f6DeFWEJuZrEAqwWCDmlEEJMf9GHYpRJz.html",
"original_id": "02c7b147329b458aa3d0079ccef6cae7",
"ext": "html",
"mime": "text/html",
"size": 7115269,
"md5": "35f45c7e852270520c52174e2a27afc3"
},
{
"name": "简易数字示波器-装配图.pdf",
"url": "https://image.lceda.cn/oshwhub/project/attachments/4ef4a80fb8bc40ce9fe6de7bde763661.pdf",
"original_id": "5b5b0535cdb74cbc9342e99f2b73aa14",
"ext": "pdf",
"mime": "application/pdf",
"size": 2599352,
"md5": "9119ea99e4ec80cddf19dfb28c9df11d"
}
],
"raw_fields": {
"path": "course-examples/yi-qi-yi-biao-jian-yi-shu-zi-shi-bo-qi-she-ji-cha-jian-ban",
"grade": 4,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,21 @@
{
"detail_url": "https://oshwhub.com/ran-pang/multifunctional-keyboard",
"cover_url": "https://image.lceda.cn/oshwhub/bc1b869340da45b5b133f7873ef0316b.png",
"attachments": [
{
"name": "3D文件20240817.rar",
"url": "https://image.lceda.cn/oshwhub/project/attachments/dcf4d546b4894095856ff26602311d74.rar",
"original_id": "c77a544f30db4e9995b1fb9d98191a1f"
},
{
"name": "结构&电子料BOM20241015.xlsx",
"url": "https://image.lceda.cn/oshwhub/project/attachments/c8e7f1b55c804bb1b02978aa2e041a32.xlsx",
"original_id": "a1e0506d93ec450eaa9836aa2d772116"
},
{
"name": "软件包.txt",
"url": "https://image.lceda.cn/oshwhub/project/attachments/3cdec58f4ae242cc9c967dc3560cef65.txt",
"original_id": "569011b22e7448b3ada12eb65391b1f7"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@@ -0,0 +1,9 @@
# 承载我所有幻想的键盘
支持WIFI的4模机械键盘USB、蓝牙、WIFI、2.4G接收器搭载可拆卸FOC旋钮屏支持SurfaceDial支持多功能磁吸扩展例如小键盘等支持语音交互。
---
- Source: https://oshwhub.com/ran-pang/multifunctional-keyboard
- Author: 蓝星多面体 (ran-pang)
- License: CC BY-NC-SA 3.0
- Published: 2026-03-02T03:05:48.000Z

View File

@@ -0,0 +1,68 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/ran-pang/multifunctional-keyboard",
"project_id": "6f0c151b366d46fe90126093dd604afe",
"title": "承载我所有幻想的键盘",
"description_short": "支持WIFI的4模机械键盘USB、蓝牙、WIFI、2.4G接收器搭载可拆卸FOC旋钮屏支持SurfaceDial支持多功能磁吸扩展例如小键盘等支持语音交互。",
"description_path": "description.md",
"author": {
"username": "ran-pang",
"display_name": "蓝星多面体",
"user_id": "67341ef1bd084fdc82253c172303c478"
},
"license": "CC BY-NC-SA 3.0",
"tags": [],
"created_at": "2024-04-09T03:31:50.000Z",
"updated_at": "2026-03-02T03:04:18.131Z",
"published_at": "2026-03-02T03:05:48.000Z",
"crawled_at": "2026-04-28T17:00:27.915251+00:00",
"metrics": {
"likes": 844,
"stars": 1702,
"forks": 0,
"views": 140596,
"watch": 0,
"comments": 168
},
"cover": {
"url": "https://image.lceda.cn/oshwhub/bc1b869340da45b5b133f7873ef0316b.png",
"path": "cover.png"
},
"files": [
{
"name": "3D文件20240817.rar",
"url": "https://image.lceda.cn/oshwhub/project/attachments/dcf4d546b4894095856ff26602311d74.rar",
"original_id": "c77a544f30db4e9995b1fb9d98191a1f",
"ext": "rar",
"mime": "application/octet-stream",
"size": 1897642,
"md5": "7992584193ce365e8dc5802ba6378d3d"
},
{
"name": "结构&电子料BOM20241015.xlsx",
"url": "https://image.lceda.cn/oshwhub/project/attachments/c8e7f1b55c804bb1b02978aa2e041a32.xlsx",
"original_id": "a1e0506d93ec450eaa9836aa2d772116",
"ext": "xlsx",
"mime": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"size": 545926,
"md5": "ac573dde597d488d5b870d08c52994ec"
},
{
"name": "软件包.txt",
"url": "https://image.lceda.cn/oshwhub/project/attachments/3cdec58f4ae242cc9c967dc3560cef65.txt",
"original_id": "569011b22e7448b3ada12eb65391b1f7",
"ext": "txt",
"mime": "text/plain",
"size": 84,
"md5": "f62b54529f79a84682e082e7ad79035c"
}
],
"raw_fields": {
"path": "ran-pang/multifunctional-keyboard",
"grade": 4,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,26 @@
{
"detail_url": "https://oshwhub.com/logicworld/h6_board",
"cover_url": "https://image.lceda.cn/pullimage/UZTlVGjHIwdTBM7U8a8MdYdS6STOC7WwmBpuVb6J.jpeg",
"attachments": [
{
"name": "DragonHDV1.7.7.rar",
"url": "https://image.lceda.cn/attachments/2023/2/SIV1i7lcm2Kv2p0Pk5JsruEk0YuNW6WsJLdlQTu2.rar",
"original_id": "298483d9407c4f50923fab5a1ca3b30d"
},
{
"name": "PhoenixInstall.zip",
"url": "https://image.lceda.cn/attachments/2023/2/yJyXOAeuuNuj5hpE0eTlgmZ7VlksTQiEzD6rNcXA.zip",
"original_id": "6ce9943e6a014c4a90c5e3303830c3f6"
},
{
"name": "VID_20230226_005335_音乐播放.mp4",
"url": "https://image.lceda.cn/attachments/2023/2/nPqrMOKDAMpaaCTNdKB60VeWpyd9Rg4EIB0kepQZ.mp4",
"original_id": "a2507f7d8e7e4f209d9988443f7a49a3"
},
{
"name": "VID_20230226_032216_3D测试.mp4",
"url": "https://image.lceda.cn/attachments/2023/2/RkVfx9191D4eTxvKW9Hb3LeNSFS3tttHBR2r49OT.mp4",
"original_id": "8e10973248664574b87d95d0f3d82d9f"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 KiB

View File

@@ -0,0 +1,9 @@
# 全志H6开发板-从零入门ARM高速电路设计
本项目开源主要目的是帮助想学ARM高速电路的小伙伴们学会自己做一个ARM开发板(eg. 全志H6开发板)。快来看看是否真从零入门,有手就行!
---
- Source: https://oshwhub.com/logicworld/h6_board
- Author: logicworld (logicworld)
- License: CERN Open Hardware License
- Published: 2023-12-11T05:43:19.000Z

View File

@@ -0,0 +1,77 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/logicworld/h6_board",
"project_id": "72312817efb6449ca520216c820c432c",
"title": "全志H6开发板-从零入门ARM高速电路设计",
"description_short": "本项目开源主要目的是帮助想学ARM高速电路的小伙伴们学会自己做一个ARM开发板(eg. 全志H6开发板)。快来看看是否真从零入门,有手就行!",
"description_path": "description.md",
"author": {
"username": "logicworld",
"display_name": "logicworld",
"user_id": "0d18a61fce2a475c94847e0ea05339a5"
},
"license": "CERN Open Hardware License",
"tags": [],
"created_at": "2022-11-06T14:43:51.000Z",
"updated_at": "2026-04-15T05:12:30.000Z",
"published_at": "2023-12-11T05:43:19.000Z",
"crawled_at": "2026-04-28T17:14:05.134789+00:00",
"metrics": {
"likes": 694,
"stars": 1459,
"forks": 0,
"views": 146963,
"watch": 0,
"comments": 166
},
"cover": {
"url": "https://image.lceda.cn/pullimage/UZTlVGjHIwdTBM7U8a8MdYdS6STOC7WwmBpuVb6J.jpeg",
"path": "cover.jpeg"
},
"files": [
{
"name": "DragonHDV1.7.7.rar",
"url": "https://image.lceda.cn/attachments/2023/2/SIV1i7lcm2Kv2p0Pk5JsruEk0YuNW6WsJLdlQTu2.rar",
"original_id": "298483d9407c4f50923fab5a1ca3b30d",
"ext": "rar",
"mime": "application/octet-stream",
"size": 5167713,
"md5": "3f296d4b3a0e3a9176a8153dc33f4217"
},
{
"name": "PhoenixInstall.zip",
"url": "https://image.lceda.cn/attachments/2023/2/yJyXOAeuuNuj5hpE0eTlgmZ7VlksTQiEzD6rNcXA.zip",
"original_id": "6ce9943e6a014c4a90c5e3303830c3f6",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 15659965,
"md5": "0d5507521921660e8b90acfba7751d5a"
},
{
"name": "VID_20230226_005335_音乐播放.mp4",
"url": "https://image.lceda.cn/attachments/2023/2/nPqrMOKDAMpaaCTNdKB60VeWpyd9Rg4EIB0kepQZ.mp4",
"original_id": "a2507f7d8e7e4f209d9988443f7a49a3",
"ext": "mp4",
"mime": "video/mp4",
"size": 43169321,
"md5": "b709ef3340ce7b381215a55e2f2aa4f7"
},
{
"name": "VID_20230226_032216_3D测试.mp4",
"url": "https://image.lceda.cn/attachments/2023/2/RkVfx9191D4eTxvKW9Hb3LeNSFS3tttHBR2r49OT.mp4",
"original_id": "8e10973248664574b87d95d0f3d82d9f",
"ext": "mp4",
"mime": "video/mp4",
"size": 49166774,
"md5": "9e9e35ad8f2a0ac26e84b2b8d4e9d1dd"
}
],
"raw_fields": {
"path": "logicworld/h6_board",
"grade": 4,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,5 @@
{
"detail_url": "https://oshwhub.com/zjsxzc217/simplefoc_-tai-gong-shuai-shuang-tong-dao",
"cover_url": "https://image.lceda.cn/pullimage/vIJaZGaQy2Mr6oSwTRgwMY3u9587uXIUrnOItBgi.jpeg",
"attachments": []
}

View File

@@ -0,0 +1,12 @@
# SIMPLEFOC_无刷电机大功率双通道驱动已验证
应该是市面上最便宜的方案吧
双路大功率无刷直流电机驱动
支持arduino,esp32,esp8266,stm32等~
支持simplefoc
---
- Source: https://oshwhub.com/zjsxzc217/simplefoc_-tai-gong-shuai-shuang-tong-dao
- Author: 成真科技 (zjsxzc217)
- License: GPL 3.0
- Published: 2022-07-28T12:48:19.000Z

View File

@@ -0,0 +1,40 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/zjsxzc217/simplefoc_-tai-gong-shuai-shuang-tong-dao",
"project_id": "766b89cd189e4f6eb068ec10a97a85d9",
"title": "SIMPLEFOC_无刷电机大功率双通道驱动已验证",
"description_short": "应该是市面上最便宜的方案吧\n双路大功率无刷直流电机驱动\n支持arduino,esp32,esp8266,stm32等~\n支持simplefoc",
"description_path": "description.md",
"author": {
"username": "zjsxzc217",
"display_name": "成真科技",
"user_id": "069b70d2bd1c419693106844aa9a89c3"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2021-12-11T12:42:08.000Z",
"updated_at": "2026-01-20T04:26:51.000Z",
"published_at": "2022-07-28T12:48:19.000Z",
"crawled_at": "2026-04-28T17:28:39.321583+00:00",
"metrics": {
"likes": 374,
"stars": 875,
"forks": 559,
"views": 95275,
"watch": 0,
"comments": 118
},
"cover": {
"url": "https://image.lceda.cn/pullimage/vIJaZGaQy2Mr6oSwTRgwMY3u9587uXIUrnOItBgi.jpeg",
"path": null
},
"files": [],
"raw_fields": {
"path": "zjsxzc217/simplefoc_-tai-gong-shuai-shuang-tong-dao",
"grade": 4,
"origin": "std",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,51 @@
{
"detail_url": "https://oshwhub.com/MisakaBanBan/small_desktop_display",
"cover_url": "https://image.lceda.cn/pullimage/0LC1VDEuA4FbpmzIHiFUESChNyIlnzC53NkgSSYf.jpeg",
"attachments": [
{
"name": "主体1.1.STL",
"url": "https://image.lceda.cn/attachments/2021/11/xOrezqcPbYfK9VnhQkYi124QpVqh6xPs7Htet9Ya.bin",
"original_id": "244c72ea5fcd4948bdec53d2c12eabd4"
},
{
"name": "后壳1.1.STL",
"url": "https://image.lceda.cn/attachments/2021/11/WW1CzjTYoa5HusYGS8TxqACFOGE55DoUA1EgLWhV.bin",
"original_id": "6ffa112d22f3418fa51ff6fa85fbdde1"
},
{
"name": "必读.txt",
"url": "https://image.lceda.cn/attachments/2021/11/Sj2hze8FxYUKfdhwcp0xB0xyfAMzhhVOJoIZaoh5.txt",
"original_id": "98fe382e770f49a98f88999bc59fca1e"
},
{
"name": "主体1.2.STL",
"url": "https://image.lceda.cn/attachments/2021/11/injkPVhnFMdBvV1LlacSNaAlKz3XBgUwtS1Zl2lx.bin",
"original_id": "5c5a5806f96f454b9647646f6a8e355c"
},
{
"name": "后壳1.2.STL",
"url": "https://image.lceda.cn/attachments/2021/11/foqqHcSvBQ8OjvrJRCBNwvGdI1fZboKJ3tfmFUhI.bin",
"original_id": "daf6ccc6850648d38f4dd33b49c7be50"
},
{
"name": "SD²固件V1.2.zip",
"url": "https://image.lceda.cn/attachments/2021/11/UKGFg66qwUPWm8xD3FsHv1bHuvJDOqnm9NxD4ilG.zip",
"original_id": "c1c474f792b745ef829dfcb6fb28284f"
},
{
"name": "SD²固件V1.3.4WEB配网+wifi休眠by 微车游.zip",
"url": "https://image.lceda.cn/attachments/2021/11/cSE9vRQNPZwGVBLIPpBfsIexEgGXvLHLN6LuHHig.zip",
"original_id": "f241ab192d554b54909d73570706a062"
},
{
"name": "SD²固件操作说明V1.2.pdf",
"url": "https://image.lceda.cn/attachments/2021/11/oecH8BquK7sEKVzrpCmLq6Omu0y8iBsGunZEGEZz.pdf",
"original_id": "b34e609a934949f6bc1eafd1dc6b0b12"
},
{
"name": "小白专用傻瓜式更新固件教程.pdf",
"url": "https://image.lceda.cn/attachments/2021/11/A2NfAqKhGFWuZnFPPQbLob6rXfPrYH9FjWGrWONa.pdf",
"original_id": "986d97e7bd954d51a77a2aca7ce94cb7"
}
]
}

View File

@@ -0,0 +1,9 @@
# 【征集令】超漂亮的个人时钟天气站 SD²
esp12f模块是一个具有WiFi的微处理器用他来打造一个超漂亮的个人时钟天气站吧
---
- Source: https://oshwhub.com/MisakaBanBan/small_desktop_display
- Author: MisakaBanBan (MisakaBanBan)
- License: GPL 3.0
- Published: 2022-07-28T08:41:38.000Z

View File

@@ -0,0 +1,122 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/MisakaBanBan/small_desktop_display",
"project_id": "7e052d660aeb40aa9d47a558dd26175b",
"title": "【征集令】超漂亮的个人时钟天气站 SD²",
"description_short": "esp12f模块是一个具有WiFi的微处理器用他来打造一个超漂亮的个人时钟天气站吧",
"description_path": "description.md",
"author": {
"username": "MisakaBanBan",
"display_name": "MisakaBanBan",
"user_id": "4e16abca3420482f972d0f52cfb55f60"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2021-11-15T12:16:55.000Z",
"updated_at": "2026-03-30T12:21:54.000Z",
"published_at": "2022-07-28T08:41:38.000Z",
"crawled_at": "2026-04-28T17:27:45.848793+00:00",
"metrics": {
"likes": 518,
"stars": 1409,
"forks": 455,
"views": 127732,
"watch": 0,
"comments": 165
},
"cover": {
"url": "https://image.lceda.cn/pullimage/0LC1VDEuA4FbpmzIHiFUESChNyIlnzC53NkgSSYf.jpeg",
"path": null
},
"files": [
{
"name": "主体1.1.STL",
"url": "https://image.lceda.cn/attachments/2021/11/xOrezqcPbYfK9VnhQkYi124QpVqh6xPs7Htet9Ya.bin",
"original_id": "244c72ea5fcd4948bdec53d2c12eabd4",
"ext": "bin",
"mime": "application/octet-stream",
"size": 453284,
"md5": "7f70ff20017533c353f9538430d19f7f"
},
{
"name": "后壳1.1.STL",
"url": "https://image.lceda.cn/attachments/2021/11/WW1CzjTYoa5HusYGS8TxqACFOGE55DoUA1EgLWhV.bin",
"original_id": "6ffa112d22f3418fa51ff6fa85fbdde1",
"ext": "bin",
"mime": "application/octet-stream",
"size": 2501084,
"md5": "78776c08f845e6fca3a040513e8de4c6"
},
{
"name": "必读.txt",
"url": "https://image.lceda.cn/attachments/2021/11/Sj2hze8FxYUKfdhwcp0xB0xyfAMzhhVOJoIZaoh5.txt",
"original_id": "98fe382e770f49a98f88999bc59fca1e",
"ext": "txt",
"mime": "text/plain",
"size": 219,
"md5": "d8158f340b332bf62a7cd3b31e5a445a"
},
{
"name": "主体1.2.STL",
"url": "https://image.lceda.cn/attachments/2021/11/injkPVhnFMdBvV1LlacSNaAlKz3XBgUwtS1Zl2lx.bin",
"original_id": "5c5a5806f96f454b9647646f6a8e355c",
"ext": "bin",
"mime": "application/octet-stream",
"size": 289884,
"md5": "f5dd36bbd86d78c3dfc374a821b9823b"
},
{
"name": "后壳1.2.STL",
"url": "https://image.lceda.cn/attachments/2021/11/foqqHcSvBQ8OjvrJRCBNwvGdI1fZboKJ3tfmFUhI.bin",
"original_id": "daf6ccc6850648d38f4dd33b49c7be50",
"ext": "bin",
"mime": "application/octet-stream",
"size": 1435384,
"md5": "5fbf822785ce6ef75b597db2c9e10310"
},
{
"name": "SD²固件V1.2.zip",
"url": "https://image.lceda.cn/attachments/2021/11/UKGFg66qwUPWm8xD3FsHv1bHuvJDOqnm9NxD4ilG.zip",
"original_id": "c1c474f792b745ef829dfcb6fb28284f",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 6717053,
"md5": "175ed5cf364d76c0dea51cfc09d90209"
},
{
"name": "SD²固件V1.3.4WEB配网+wifi休眠by 微车游.zip",
"url": "https://image.lceda.cn/attachments/2021/11/cSE9vRQNPZwGVBLIPpBfsIexEgGXvLHLN6LuHHig.zip",
"original_id": "f241ab192d554b54909d73570706a062",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 6914662,
"md5": "c7c5a5ee48585c7b6ca9fe4adb3df46e"
},
{
"name": "SD²固件操作说明V1.2.pdf",
"url": "https://image.lceda.cn/attachments/2021/11/oecH8BquK7sEKVzrpCmLq6Omu0y8iBsGunZEGEZz.pdf",
"original_id": "b34e609a934949f6bc1eafd1dc6b0b12",
"ext": "pdf",
"mime": "application/pdf",
"size": 456350,
"md5": "b2a4cceca497cd75e6a4f6969f68baad"
},
{
"name": "小白专用傻瓜式更新固件教程.pdf",
"url": "https://image.lceda.cn/attachments/2021/11/A2NfAqKhGFWuZnFPPQbLob6rXfPrYH9FjWGrWONa.pdf",
"original_id": "986d97e7bd954d51a77a2aca7ce94cb7",
"ext": "pdf",
"mime": "application/pdf",
"size": 342970,
"md5": "514f974dd681a550c453655be2ae56c9"
}
],
"raw_fields": {
"path": "MisakaBanBan/small_desktop_display",
"grade": 3,
"origin": "std",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,11 @@
{
"detail_url": "https://oshwhub.com/45coll/a2fff3c71f5d4de2b899c64b152d3da5",
"cover_url": "https://image.lceda.cn/avatars/2022/9/uP30wGpCdSXnic6Kj0gvH8ZBxmTHzAzC5YTwZ9x8.png",
"attachments": [
{
"name": "QQ短视频20220906142348.mp4",
"url": "https://image.lceda.cn/attachments/2022/9/cNwW3fKpyIa5hvkCUPNOv5Hqku0PwhrhmE9CEVyL.mp4",
"original_id": "f3e66fe0ba5145c69061c83bf4b425fc"
}
]
}

View File

@@ -0,0 +1,9 @@
# Super Dial 电机旋钮屏—esp32s3—v2
灵感来源与国外的smart konb制作初衷为制作一个桌面力反馈旋钮可实现与surface dial一样的功能。
---
- Source: https://oshwhub.com/45coll/a2fff3c71f5d4de2b899c64b152d3da5
- Author: 45coll (45coll)
- License: GPL 3.0
- Published: 2024-05-06T08:44:13.000Z

View File

@@ -0,0 +1,50 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/45coll/a2fff3c71f5d4de2b899c64b152d3da5",
"project_id": "7f7565ef11504863938c0de79622dd54",
"title": "Super Dial 电机旋钮屏—esp32s3—v2",
"description_short": "灵感来源与国外的smart konb制作初衷为制作一个桌面力反馈旋钮可实现与surface dial一样的功能。",
"description_path": "description.md",
"author": {
"username": "45coll",
"display_name": "45coll",
"user_id": "580e8f5f47ef40be8cf8b3b09b3a14f5"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2022-07-17T02:00:14.000Z",
"updated_at": "2026-04-15T07:54:56.000Z",
"published_at": "2024-05-06T08:44:13.000Z",
"crawled_at": "2026-04-28T17:27:36.311536+00:00",
"metrics": {
"likes": 554,
"stars": 1174,
"forks": 0,
"views": 116513,
"watch": 0,
"comments": 175
},
"cover": {
"url": "https://image.lceda.cn/avatars/2022/9/uP30wGpCdSXnic6Kj0gvH8ZBxmTHzAzC5YTwZ9x8.png",
"path": null
},
"files": [
{
"name": "QQ短视频20220906142348.mp4",
"url": "https://image.lceda.cn/attachments/2022/9/cNwW3fKpyIa5hvkCUPNOv5Hqku0PwhrhmE9CEVyL.mp4",
"original_id": "f3e66fe0ba5145c69061c83bf4b425fc",
"ext": "mp4",
"mime": "video/mp4",
"size": 10440902,
"md5": "23e41f0b90a20a13b1738c514369a6e0"
}
],
"raw_fields": {
"path": "45coll/a2fff3c71f5d4de2b899c64b152d3da5",
"grade": 4,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,41 @@
{
"detail_url": "https://oshwhub.com/course-examples/bot-dog",
"cover_url": "https://image.lceda.cn/oshwhub/b5a3370cb7994efc8d4051635879d0a1.jpg",
"attachments": [
{
"name": "EDA-Robot演示视频.mp4",
"url": "https://image.lceda.cn/oshwhub/project/attachments/b3f76c6e5f174920be5ff881c51cb053.mp4",
"original_id": "94da385b92e5447aaa4a8b5aa2921136"
},
{
"name": "EDA-Robot机器狗项目.zip",
"url": "https://image.lceda.cn/oshwhub/project/attachments/79ea8924fab54c65a5060b3d5df74900.zip",
"original_id": "c7187eb4deb046398d8f9a47020da3c1"
},
{
"name": "EDA-Robot(180度舵机版)_V1.0.zip",
"url": "https://image.lceda.cn/oshwhub/project/attachments/2686655fc5e54288b6389d81cb3d9545.zip",
"original_id": "77008a152d1142c7b8bada57efba4f16"
},
{
"name": "EDA-Robot(180度舵机版)_V1.1.zip",
"url": "https://image.lceda.cn/oshwhub/project/attachments/1cbae5b1f7ed4f9d9209d771c856396a.zip",
"original_id": "9b5ab50965a946eab2f7326ade3b7465"
},
{
"name": "软件源码.zip",
"url": "https://image.lceda.cn/oshwhub/project/attachments/3d5e14de313647bcbc6fd047787b4c71.zip",
"original_id": "1a79d93c790847a39aca291ce940a60e"
},
{
"name": "EDA-Robot(360度舵机版).zip",
"url": "https://image.lceda.cn/oshwhub/project/attachments/1f105ddb15984777b02b3d6a41b089f5.zip",
"original_id": "8996994d4a1646b888a230163fba5534"
},
{
"name": "简易四足机器狗物料清单.xlsx",
"url": "https://image.lceda.cn/oshwhub/project/attachments/a4df9115d8274e9d8caf18fcf3efd458.xlsx",
"original_id": "dd7f90c81c5143d48b48897b99bd41ea"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 KiB

View File

@@ -0,0 +1,9 @@
# EDA-Robot机器狗
此项目采用ESP8266主控支持手机遥控采用插件封装非常适合新手焊接。
---
- Source: https://oshwhub.com/course-examples/bot-dog
- Author: EDA课程案例团队 (course-examples)
- License: GPL 3.0
- Published: 2025-11-19T01:45:41.000Z

View File

@@ -0,0 +1,104 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/course-examples/bot-dog",
"project_id": "8101a18ad83a49b8937b4c3b25d4490a",
"title": "EDA-Robot机器狗",
"description_short": "此项目采用ESP8266主控支持手机遥控采用插件封装非常适合新手焊接。",
"description_path": "description.md",
"author": {
"username": "course-examples",
"display_name": "EDA课程案例团队",
"user_id": "ebbda44292b4423b92db6e999d50f4d4"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2024-11-29T03:28:45.000Z",
"updated_at": "2025-12-13T09:17:08.000Z",
"published_at": "2025-11-19T01:45:41.000Z",
"crawled_at": "2026-04-28T17:00:57.645264+00:00",
"metrics": {
"likes": 470,
"stars": 1259,
"forks": 0,
"views": 152521,
"watch": 0,
"comments": 754
},
"cover": {
"url": "https://image.lceda.cn/oshwhub/b5a3370cb7994efc8d4051635879d0a1.jpg",
"path": "cover.jpg"
},
"files": [
{
"name": "EDA-Robot演示视频.mp4",
"url": "https://image.lceda.cn/oshwhub/project/attachments/b3f76c6e5f174920be5ff881c51cb053.mp4",
"original_id": "94da385b92e5447aaa4a8b5aa2921136",
"ext": "mp4",
"mime": "video/mp4",
"size": 24759450,
"md5": "160406f1413498f31416cf842c713994"
},
{
"name": "EDA-Robot机器狗项目.zip",
"url": "https://image.lceda.cn/oshwhub/project/attachments/79ea8924fab54c65a5060b3d5df74900.zip",
"original_id": "c7187eb4deb046398d8f9a47020da3c1",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 12758243,
"md5": "83de9d97c0e3870aa760677594a0d17b"
},
{
"name": "EDA-Robot(180度舵机版)_V1.0.zip",
"url": "https://image.lceda.cn/oshwhub/project/attachments/2686655fc5e54288b6389d81cb3d9545.zip",
"original_id": "77008a152d1142c7b8bada57efba4f16",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 35138116,
"md5": "14f2cbf414e4f6bcbb3a5a29f5abbf70"
},
{
"name": "EDA-Robot(180度舵机版)_V1.1.zip",
"url": "https://image.lceda.cn/oshwhub/project/attachments/1cbae5b1f7ed4f9d9209d771c856396a.zip",
"original_id": "9b5ab50965a946eab2f7326ade3b7465",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 33947718,
"md5": "3d5586dd37668fe4e162ffb09fab569f"
},
{
"name": "软件源码.zip",
"url": "https://image.lceda.cn/oshwhub/project/attachments/3d5e14de313647bcbc6fd047787b4c71.zip",
"original_id": "1a79d93c790847a39aca291ce940a60e",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 133471671,
"md5": "7a0329bee3818a0f3cf9a1686306d259"
},
{
"name": "EDA-Robot(360度舵机版).zip",
"url": "https://image.lceda.cn/oshwhub/project/attachments/1f105ddb15984777b02b3d6a41b089f5.zip",
"original_id": "8996994d4a1646b888a230163fba5534",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 33958851,
"md5": "b3d9b55a945d912200b12c688179c497"
},
{
"name": "简易四足机器狗物料清单.xlsx",
"url": "https://image.lceda.cn/oshwhub/project/attachments/a4df9115d8274e9d8caf18fcf3efd458.xlsx",
"original_id": "dd7f90c81c5143d48b48897b99bd41ea",
"ext": "xlsx",
"mime": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"size": 13656,
"md5": "986b4807999106200cdceb2ad6f5f426"
}
],
"raw_fields": {
"path": "course-examples/bot-dog",
"grade": 4,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,46 @@
{
"detail_url": "https://oshwhub.com/jie326513988/ESP32mi-ni-mo-shui-ping-MP3shou-",
"cover_url": "https://image.lceda.cn/pullimage/1kkoNNRel8HGTyfXE6rdvuyIrhsZIB9yjFK1ylZ7.jpeg",
"attachments": [
{
"name": "Cyberpunks.ttf",
"url": "https://image.lceda.cn/attachments/2023/4/FaXJtSAljzxOzElvWD0rsMFXZX56SPkOcKRm4xGf.ttf",
"original_id": "66f1c1dd48ef4283a5a8bb8b7b50a66a"
},
{
"name": "物料清单立创+部分淘宝bom.xls",
"url": "https://image.lceda.cn/attachments/2023/7/PPPNsIXXMw50pCHsnQuNZBgIoM49vsXwf2qInDKC",
"original_id": "1a1c3bb2fc9a435ba873da25c1c3a5a4"
},
{
"name": "外壳图案资料20230706.zip",
"url": "https://image.lceda.cn/attachments/2023/7/wGGJGWzVPQFAImdmJd31DCIyjENbCEb7vjiIYYQV.zip",
"original_id": "8f1eb2fdc3e54d538b3cb32559b8cd3b"
},
{
"name": "表盘.zip",
"url": "https://image.lceda.cn/attachments/2023/7/m6DKCeJZpyoUsMStcSZVrQWq0v3Zgi5NEdiKqWe8.zip",
"original_id": "0e80d3858bbe4f959d5ef3956c48fba1"
},
{
"name": "面板版本外壳-esp32墨水屏MP3-20230919.zip",
"url": "https://image.lceda.cn/attachments/2023/9/Q81VwGBXWiLedMBnxJBDNtfbmmq85YeOPWYgDePY.zip",
"original_id": "bfcdb0f390d94341b1ecd2250c10c804"
},
{
"name": "普通版本外壳-esp32墨水屏MP3-20230919.zip",
"url": "https://image.lceda.cn/attachments/2023/9/VroBZkfv7LXvIp3HqkR3pq1Je3y4oLBWs4ronIo0.zip",
"original_id": "46448bf25dd9417ab53d6ced586d8baa"
},
{
"name": "表盘制作工具0.2.zip",
"url": "https://image.lceda.cn/attachments/2023/9/ANLnOyLWWbrKDtVSXVUbXmIlwVnGbPJibmEEl4Mi.zip",
"original_id": "b4459dd540c44c37b74f1a2b2cae80e7"
},
{
"name": "UID加密算法.zip",
"url": "https://image.lceda.cn/attachments/2023/10/5oCvFHmOra8HBQi7tRzHrALoECQCaz6684kXrsrG.zip",
"original_id": "dcf13b4c76d9462bbdb37f33f781eff9"
}
]
}

View File

@@ -0,0 +1,9 @@
# ESP32墨水屏MP3收音机阅读器
天气 阅读 图片 时钟 MP3 收音机 配网 设置
---
- Source: https://oshwhub.com/jie326513988/ESP32mi-ni-mo-shui-ping-MP3shou-
- Author: 甘草酸不酸 (jie326513988)
- License: GPL 3.0
- Published: 2024-05-28T01:15:46.000Z

View File

@@ -0,0 +1,113 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/jie326513988/ESP32mi-ni-mo-shui-ping-MP3shou-",
"project_id": "81e13f4b2c8942dca536bfe23e2bf1dc",
"title": "ESP32墨水屏MP3收音机阅读器",
"description_short": "天气 阅读 图片 时钟 MP3 收音机 配网 设置",
"description_path": "description.md",
"author": {
"username": "jie326513988",
"display_name": "甘草酸不酸",
"user_id": "2f4dba9caefc4ce2a56acccdb7d95846"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2023-03-11T10:10:21.000Z",
"updated_at": "2026-04-16T10:23:34.000Z",
"published_at": "2024-05-28T01:15:46.000Z",
"crawled_at": "2026-04-28T17:27:31.403653+00:00",
"metrics": {
"likes": 501,
"stars": 1120,
"forks": 0,
"views": 108042,
"watch": 0,
"comments": 224
},
"cover": {
"url": "https://image.lceda.cn/pullimage/1kkoNNRel8HGTyfXE6rdvuyIrhsZIB9yjFK1ylZ7.jpeg",
"path": null
},
"files": [
{
"name": "Cyberpunks.ttf",
"url": "https://image.lceda.cn/attachments/2023/4/FaXJtSAljzxOzElvWD0rsMFXZX56SPkOcKRm4xGf.ttf",
"original_id": "66f1c1dd48ef4283a5a8bb8b7b50a66a",
"ext": "ttf",
"mime": "application/octet-stream",
"size": 15496,
"md5": "0e17f7b8cb9f41ff17d1b26f0a2db28c"
},
{
"name": "物料清单立创+部分淘宝bom.xls",
"url": "https://image.lceda.cn/attachments/2023/7/PPPNsIXXMw50pCHsnQuNZBgIoM49vsXwf2qInDKC",
"original_id": "1a1c3bb2fc9a435ba873da25c1c3a5a4",
"ext": null,
"mime": "application/vnd.ms-excel",
"size": 41984,
"md5": "f3c8b0f381baa8d6e8e7f24d07ffb124"
},
{
"name": "外壳图案资料20230706.zip",
"url": "https://image.lceda.cn/attachments/2023/7/wGGJGWzVPQFAImdmJd31DCIyjENbCEb7vjiIYYQV.zip",
"original_id": "8f1eb2fdc3e54d538b3cb32559b8cd3b",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 7008178,
"md5": "e6eab2f1e520bf32dc63e5f96546a258"
},
{
"name": "表盘.zip",
"url": "https://image.lceda.cn/attachments/2023/7/m6DKCeJZpyoUsMStcSZVrQWq0v3Zgi5NEdiKqWe8.zip",
"original_id": "0e80d3858bbe4f959d5ef3956c48fba1",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 521663,
"md5": "283c6d67e1001ac527037295d0eaec02"
},
{
"name": "面板版本外壳-esp32墨水屏MP3-20230919.zip",
"url": "https://image.lceda.cn/attachments/2023/9/Q81VwGBXWiLedMBnxJBDNtfbmmq85YeOPWYgDePY.zip",
"original_id": "bfcdb0f390d94341b1ecd2250c10c804",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 216862,
"md5": "840cd6ba7c3032ca994c01502cf31ffc"
},
{
"name": "普通版本外壳-esp32墨水屏MP3-20230919.zip",
"url": "https://image.lceda.cn/attachments/2023/9/VroBZkfv7LXvIp3HqkR3pq1Je3y4oLBWs4ronIo0.zip",
"original_id": "46448bf25dd9417ab53d6ced586d8baa",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 247948,
"md5": "a378e456ab034173de92d9dcfb914ff8"
},
{
"name": "表盘制作工具0.2.zip",
"url": "https://image.lceda.cn/attachments/2023/9/ANLnOyLWWbrKDtVSXVUbXmIlwVnGbPJibmEEl4Mi.zip",
"original_id": "b4459dd540c44c37b74f1a2b2cae80e7",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 1849891,
"md5": "b08d15791a2ff7022c95ca417fdff12a"
},
{
"name": "UID加密算法.zip",
"url": "https://image.lceda.cn/attachments/2023/10/5oCvFHmOra8HBQi7tRzHrALoECQCaz6684kXrsrG.zip",
"original_id": "dcf13b4c76d9462bbdb37f33f781eff9",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 320213,
"md5": "a3b535432e0f146368186f81831a340b"
}
],
"raw_fields": {
"path": "jie326513988/ESP32mi-ni-mo-shui-ping-MP3shou-",
"grade": 4,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,5 @@
{
"detail_url": "https://oshwhub.com/eda_rgprdhwej/chappie_oshw",
"cover_url": "https://image.lceda.cn/pullimage/SlO722DEICOgmKA2CqLCoWEJEgAZa9Ue92W7scYW.jpeg",
"attachments": []
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

View File

@@ -0,0 +1,9 @@
# 【ESP32-S3】1.69寸触摸屏迷你控制器~
基于ESP32-S3板载1.69寸LCD总成接口、蜂鸣器、SD卡槽、AXP173电源管理双排母引出大部分引脚供底板拓展功能。
---
- Source: https://oshwhub.com/eda_rgprdhwej/chappie_oshw
- Author: 海底撩 (eda_rgprdhwej)
- License: MIT
- Published: 2022-12-02T01:17:24.000Z

View File

@@ -0,0 +1,40 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/eda_rgprdhwej/chappie_oshw",
"project_id": "8624bf3d43ba4732bb256c08aafe186b",
"title": "【ESP32-S3】1.69寸触摸屏迷你控制器~",
"description_short": "基于ESP32-S3板载1.69寸LCD总成接口、蜂鸣器、SD卡槽、AXP173电源管理双排母引出大部分引脚供底板拓展功能。",
"description_path": "description.md",
"author": {
"username": "eda_rgprdhwej",
"display_name": "海底撩",
"user_id": "f2352062eb974a6abed1282c2764c3c7"
},
"license": "MIT",
"tags": [],
"created_at": "2022-08-21T16:07:40.000Z",
"updated_at": "2026-02-23T23:34:38.000Z",
"published_at": "2022-12-02T01:17:24.000Z",
"crawled_at": "2026-04-28T17:23:57.128322+00:00",
"metrics": {
"likes": 595,
"stars": 1528,
"forks": 0,
"views": 114268,
"watch": 0,
"comments": 232
},
"cover": {
"url": "https://image.lceda.cn/pullimage/SlO722DEICOgmKA2CqLCoWEJEgAZa9Ue92W7scYW.jpeg",
"path": "cover.jpeg"
},
"files": [],
"raw_fields": {
"path": "eda_rgprdhwej/chappie_oshw",
"grade": 4,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,26 @@
{
"detail_url": "https://oshwhub.com/mondraker/snow_light",
"cover_url": "https://image.lceda.cn/pullimage/mwKKTEDJaNPWViwxYvr2tgWnnFKj7F5HxOervHOT.jpeg",
"attachments": [
{
"name": "ibom焊接图.zip",
"url": "https://image.lceda.cn/attachments/2022/9/mJq7eM9QcM48iuYmLEXudUz9SI51QOajguGM50M6.zip",
"original_id": "e09b393441414f80a5a6b62fd7dbea95"
},
{
"name": "立创商城下单bom.xlsx",
"url": "https://image.lceda.cn/attachments/2022/11/jIJMPm4JJHTxzqyryOjaNtuWqgsfm8bAEPWd4ZEf.bin",
"original_id": "edc3eb6f6cb34df4bc84cc663ecc8df0"
},
{
"name": "雪花灯外壳(立创面板打印)-顶.zip",
"url": "https://image.lceda.cn/attachments/2023/1/qtdEa5eGGUTVhEN4BomBTWNkPGm2sz4isbpPPvP2.zip",
"original_id": "c966347bdc4f42098ace1a9b6ea09afb"
},
{
"name": "雪花灯外壳(立创面板打印)-底.zip",
"url": "https://image.lceda.cn/attachments/2023/1/IIA9aLts4pZ3FuV7X8VeodBjdvRSuXpYEK4ikMFi.zip",
"original_id": "0c2b7848e41846f8b5523924f84f9609"
}
]
}

View File

@@ -0,0 +1,9 @@
# 触摸无极调光雪花灯(陶瓷灯丝)(新手小白也可以做!)
触摸无极调光无频闪无需烧录程序焊接简单有教程送朋友当挂件都可。Type-C接口成本不算邮费五块左右。附带焊接教程与所有物料链接配套亚克力外壳与充电底座都已开源迭代完成放心食用。
---
- Source: https://oshwhub.com/mondraker/snow_light
- Author: mondraker (mondraker)
- License: GPL 3.0
- Published: 2024-12-18T05:45:21.000Z

View File

@@ -0,0 +1,77 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/mondraker/snow_light",
"project_id": "9158ea94e9654f6eb2cca93b5c2a9c32",
"title": "触摸无极调光雪花灯(陶瓷灯丝)(新手小白也可以做!)",
"description_short": "触摸无极调光无频闪无需烧录程序焊接简单有教程送朋友当挂件都可。Type-C接口成本不算邮费五块左右。附带焊接教程与所有物料链接配套亚克力外壳与充电底座都已开源迭代完成放心食用。",
"description_path": "description.md",
"author": {
"username": "mondraker",
"display_name": "mondraker",
"user_id": "37d334fe908b4df9b508da7318220388"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2022-04-05T15:41:17.000Z",
"updated_at": "2026-03-11T09:15:59.000Z",
"published_at": "2024-12-18T05:45:21.000Z",
"crawled_at": "2026-04-28T17:27:36.312889+00:00",
"metrics": {
"likes": 1036,
"stars": 2324,
"forks": 4434,
"views": 297150,
"watch": 0,
"comments": 524
},
"cover": {
"url": "https://image.lceda.cn/pullimage/mwKKTEDJaNPWViwxYvr2tgWnnFKj7F5HxOervHOT.jpeg",
"path": null
},
"files": [
{
"name": "ibom焊接图.zip",
"url": "https://image.lceda.cn/attachments/2022/9/mJq7eM9QcM48iuYmLEXudUz9SI51QOajguGM50M6.zip",
"original_id": "e09b393441414f80a5a6b62fd7dbea95",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 253171,
"md5": "bbbbfc2ec5c832bbddb4138cf1f0730f"
},
{
"name": "立创商城下单bom.xlsx",
"url": "https://image.lceda.cn/attachments/2022/11/jIJMPm4JJHTxzqyryOjaNtuWqgsfm8bAEPWd4ZEf.bin",
"original_id": "edc3eb6f6cb34df4bc84cc663ecc8df0",
"ext": "bin",
"mime": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"size": 9953,
"md5": "53a319277da38399561eabd227775173"
},
{
"name": "雪花灯外壳(立创面板打印)-顶.zip",
"url": "https://image.lceda.cn/attachments/2023/1/qtdEa5eGGUTVhEN4BomBTWNkPGm2sz4isbpPPvP2.zip",
"original_id": "c966347bdc4f42098ace1a9b6ea09afb",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 121058,
"md5": "9ef182365de5226987d457082738e2ba"
},
{
"name": "雪花灯外壳(立创面板打印)-底.zip",
"url": "https://image.lceda.cn/attachments/2023/1/IIA9aLts4pZ3FuV7X8VeodBjdvRSuXpYEK4ikMFi.zip",
"original_id": "0c2b7848e41846f8b5523924f84f9609",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 101727,
"md5": "618f72537fce0fca79ec7e8b6f216723"
}
],
"raw_fields": {
"path": "mondraker/snow_light",
"grade": 3,
"origin": "std",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,21 @@
{
"detail_url": "https://oshwhub.com/esp-college/esp-sparkbot",
"cover_url": "https://image.lceda.cn/pullimage/YyPkhuGTNedxg6yM3fkJBovQB2b56pCCJb27zQjN.png",
"attachments": [
{
"name": "ESP-Sparkbot V1.0 版本 3D 结构文件.zip",
"url": "https://image.lceda.cn/oshwhub/project/attachments/d0d0ef3b19cf40e8b73c83f81aa328b4.zip",
"original_id": "019b2563c2af4ec39f6ac69d38f47f02"
},
{
"name": "sparkbot 主体头部后壳有开关版本_20250107.STL",
"url": "https://image.lceda.cn/oshwhub/project/attachments/796bd6cff4b444c999a75c38063ede51.stl",
"original_id": "c24d5e2146234f408cbd6ed081f4ea39"
},
{
"name": "esp-sparkbot 配件 3D 模型.zip",
"url": "https://image.lceda.cn/oshwhub/project/attachments/0e4e4896bca64ea88202a15658463edc.zip",
"original_id": "5fd4991602a54136aad5c0d1cab2d6e2"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

View File

@@ -0,0 +1,9 @@
# ESP-SparkBot
ESP-SparkBot 基于 ESP32-S3融合语音交互、图像识别与多媒体娱乐可变身遥控小车、玩转本地 AI支持大模型对话、实时视频传输和高清视频投屏性能强大乐趣无限
---
- Source: https://oshwhub.com/esp-college/esp-sparkbot
- Author: 乐鑫小铁匠 (esp-college)
- License: GPL 3.0
- Published: 2025-03-12T05:42:19.000Z

View File

@@ -0,0 +1,68 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/esp-college/esp-sparkbot",
"project_id": "91fd41224cd74ffd8410bc77b216693b",
"title": "ESP-SparkBot",
"description_short": "ESP-SparkBot 基于 ESP32-S3融合语音交互、图像识别与多媒体娱乐可变身遥控小车、玩转本地 AI支持大模型对话、实时视频传输和高清视频投屏性能强大乐趣无限",
"description_path": "description.md",
"author": {
"username": "esp-college",
"display_name": "乐鑫小铁匠",
"user_id": "16555ec60452466ea4dbaa7c6b92cd89"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2024-10-15T03:45:10.000Z",
"updated_at": "2025-11-11T10:24:51.000Z",
"published_at": "2025-03-12T05:42:19.000Z",
"crawled_at": "2026-04-28T16:59:54.198797+00:00",
"metrics": {
"likes": 837,
"stars": 2135,
"forks": 0,
"views": 304205,
"watch": 0,
"comments": 343
},
"cover": {
"url": "https://image.lceda.cn/pullimage/YyPkhuGTNedxg6yM3fkJBovQB2b56pCCJb27zQjN.png",
"path": "cover.png"
},
"files": [
{
"name": "ESP-Sparkbot V1.0 版本 3D 结构文件.zip",
"url": "https://image.lceda.cn/oshwhub/project/attachments/d0d0ef3b19cf40e8b73c83f81aa328b4.zip",
"original_id": "019b2563c2af4ec39f6ac69d38f47f02",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 4435050,
"md5": "5a8a03e419e6698a90675c52cfa79b0b"
},
{
"name": "sparkbot 主体头部后壳有开关版本_20250107.STL",
"url": "https://image.lceda.cn/oshwhub/project/attachments/796bd6cff4b444c999a75c38063ede51.stl",
"original_id": "c24d5e2146234f408cbd6ed081f4ea39",
"ext": "stl",
"mime": "application/octet-stream",
"size": 13559984,
"md5": "d01d20c398e3950af6e8ef1107b390ff"
},
{
"name": "esp-sparkbot 配件 3D 模型.zip",
"url": "https://image.lceda.cn/oshwhub/project/attachments/0e4e4896bca64ea88202a15658463edc.zip",
"original_id": "5fd4991602a54136aad5c0d1cab2d6e2",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 1344016,
"md5": "4192a0f84a48de1d02efa937afaf69bb"
}
],
"raw_fields": {
"path": "esp-college/esp-sparkbot",
"grade": 3,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,11 @@
{
"detail_url": "https://oshwhub.com/zhushengji/er-dai-dan-ci-ka",
"cover_url": "https://image.lceda.cn/pullimage/cwNUVdKKMKru1Zm3GxRHOkVtJvPBbInHGOebLFTD.jpeg",
"attachments": [
{
"name": "二代 2.13墨水屏单词卡全部元件及参考购买链接清单.xlsx",
"url": "https://image.lceda.cn/attachments/2022/10/YCexnsBhuXywlDeHuoQjw3piyFvyDLroMqswTMJv.xlsx",
"original_id": "c93321c4d83540899ef3cae901472780"
}
]
}

View File

@@ -0,0 +1,9 @@
# 二代单词卡--萤囊
二代单词卡来啦!增加了许多新特性哦!
---
- Source: https://oshwhub.com/zhushengji/er-dai-dan-ci-ka
- Author: 夏襄居士 (zhushengji)
- License: Public Domain
- Published: 2023-07-03T03:23:54.000Z

View File

@@ -0,0 +1,50 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/zhushengji/er-dai-dan-ci-ka",
"project_id": "929b16138f744f498c55840a87c141be",
"title": "二代单词卡--萤囊",
"description_short": "二代单词卡来啦!增加了许多新特性哦!",
"description_path": "description.md",
"author": {
"username": "zhushengji",
"display_name": "夏襄居士",
"user_id": "b3c7dee82f5b4c8cb0e631c4933af8b7"
},
"license": "Public Domain",
"tags": [],
"created_at": "2022-10-10T08:54:32.000Z",
"updated_at": "2026-01-21T05:43:36.000Z",
"published_at": "2023-07-03T03:23:54.000Z",
"crawled_at": "2026-04-28T17:29:01.316047+00:00",
"metrics": {
"likes": 485,
"stars": 944,
"forks": 197,
"views": 79332,
"watch": 0,
"comments": 182
},
"cover": {
"url": "https://image.lceda.cn/pullimage/cwNUVdKKMKru1Zm3GxRHOkVtJvPBbInHGOebLFTD.jpeg",
"path": null
},
"files": [
{
"name": "二代 2.13墨水屏单词卡全部元件及参考购买链接清单.xlsx",
"url": "https://image.lceda.cn/attachments/2022/10/YCexnsBhuXywlDeHuoQjw3piyFvyDLroMqswTMJv.xlsx",
"original_id": "c93321c4d83540899ef3cae901472780",
"ext": "xlsx",
"mime": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"size": 17938,
"md5": "7917b25354f173eaaee03e2183774763"
}
],
"raw_fields": {
"path": "zhushengji/er-dai-dan-ci-ka",
"grade": 4,
"origin": "std",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,21 @@
{
"detail_url": "https://oshwhub.com/littleoandlittleq/bian-xie-jia-re-tai",
"cover_url": "https://image.lceda.cn/pullimage/jDqTDFPFZtipYNYB0YLY3eLCALiFStAnJA1XThW3.jpeg",
"attachments": [
{
"name": "mini加热台.zip",
"url": "https://image.lceda.cn/attachments/2022/9/OkmFIAc4W0oNO8id981Qx2HKDQGtHhELtrRruSez.zip",
"original_id": "66b490db01644182832744519a3eff2d"
},
{
"name": "演示.mp4",
"url": "https://image.lceda.cn/attachments/2022/9/fLXJRIwKZjyC3D5FmiSZGuped1OWzDJwemEu5ol1.mp4",
"original_id": "30778162d135432b9cf7930da02767cc"
},
{
"name": "HeatingPlate-PD-修复温度频繁跳变.hex",
"url": "https://image.lceda.cn/attachments/2022/10/Vh04GZajs1OSanjeymaWCZmpykJZAZmaf52kIlqG.txt",
"original_id": "4e4451d2c57e4669a48152d865bdd44e"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View File

@@ -0,0 +1,9 @@
# [PD协议 | 高颜值]mini加热台
超迷你的加热台PD20V供电加热面大小5.6*5.6cm,可以通过两个按键设置参数。
---
- Source: https://oshwhub.com/littleoandlittleq/bian-xie-jia-re-tai
- Author: 小O和小Q (littleoandlittleq)
- License: GPL 3.0
- Published: 2023-07-27T01:58:31.000Z

View File

@@ -0,0 +1,68 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/littleoandlittleq/bian-xie-jia-re-tai",
"project_id": "977b637a85fa44fbb5d4214373576a04",
"title": "[PD协议 | 高颜值]mini加热台",
"description_short": "超迷你的加热台PD20V供电加热面大小5.6*5.6cm,可以通过两个按键设置参数。",
"description_path": "description.md",
"author": {
"username": "littleoandlittleq",
"display_name": "小O和小Q",
"user_id": "9ff80e24b505422a87c592cd4c6efb69"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2022-09-12T11:49:10.000Z",
"updated_at": "2026-04-03T01:41:10.000Z",
"published_at": "2023-07-27T01:58:31.000Z",
"crawled_at": "2026-04-28T16:59:36.937187+00:00",
"metrics": {
"likes": 994,
"stars": 2257,
"forks": 0,
"views": 218248,
"watch": 0,
"comments": 728
},
"cover": {
"url": "https://image.lceda.cn/pullimage/jDqTDFPFZtipYNYB0YLY3eLCALiFStAnJA1XThW3.jpeg",
"path": "cover.jpeg"
},
"files": [
{
"name": "mini加热台.zip",
"url": "https://image.lceda.cn/attachments/2022/9/OkmFIAc4W0oNO8id981Qx2HKDQGtHhELtrRruSez.zip",
"original_id": "66b490db01644182832744519a3eff2d",
"ext": "zip",
"mime": "application/x-zip-compressed",
"size": 1016755,
"md5": "09024a961bdccf4fbfd869fb372ef398"
},
{
"name": "演示.mp4",
"url": "https://image.lceda.cn/attachments/2022/9/fLXJRIwKZjyC3D5FmiSZGuped1OWzDJwemEu5ol1.mp4",
"original_id": "30778162d135432b9cf7930da02767cc",
"ext": "mp4",
"mime": "video/mp4",
"size": 12091219,
"md5": "b79ba5183adaf449c33fea9e52245b1e"
},
{
"name": "HeatingPlate-PD-修复温度频繁跳变.hex",
"url": "https://image.lceda.cn/attachments/2022/10/Vh04GZajs1OSanjeymaWCZmpykJZAZmaf52kIlqG.txt",
"original_id": "4e4451d2c57e4669a48152d865bdd44e",
"ext": "txt",
"mime": "application/octet-stream",
"size": 90235,
"md5": "1eafa1f681c8d988c1213b28de8fe2e3"
}
],
"raw_fields": {
"path": "littleoandlittleq/bian-xie-jia-re-tai",
"grade": 4,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,21 @@
{
"detail_url": "https://oshwhub.com/wei-lai-dian-zi-gong-zuo-shi/qian-ru-shi-ji-yu-stc32-de-zhi-nen-xiao-che-she-ji",
"cover_url": "https://image.lceda.cn/pullimage/RbtzBBvdIJIdAxBUtjynAvNDdGU55JWdusa1Y7Wk.png",
"attachments": [
{
"name": "bluetooth.apk.1.1",
"url": "https://image.lceda.cn/attachments/2022/10/nBYzLyYPoInp6UYq9nYTuw1rFepSdcF4Ne2l9vxN.zip",
"original_id": "ab1784a7cb214458b18fa54454cc9fc5"
},
{
"name": "STC32逐梦壹号智能小车参考代码.rar",
"url": "https://image.lceda.cn/attachments/2022/11/rQKgnvaygD7ecUrsO6LJsFlxzk7qJbu4lu70ktZG.rar",
"original_id": "651b006d266e46f8a65bbcc5ecf8f467"
},
{
"name": "逐梦壹号STC32智能小车项目硬件设计文档.pdf",
"url": "https://image.lceda.cn/attachments/2022/11/WNnyYDNsuD5e688evilwsGIl0GebNdAYbZPzk3YH.pdf",
"original_id": "21418bd6ebbe4090b21dd8e42b9add17"
}
]
}

View File

@@ -0,0 +1,9 @@
# 【嵌入式】逐梦壹号-基于STC32的智能小车设计
如果说小时候有什么梦想那可能就是想拥有一辆属于自己的四驱车了。为了圆造车梦将电路学习、PCB设计、焊接与单片机开发结合起来真正做到零基础学习这辆小车我们便给它取名为逐梦壹号。
---
- Source: https://oshwhub.com/wei-lai-dian-zi-gong-zuo-shi/qian-ru-shi-ji-yu-stc32-de-zhi-nen-xiao-che-she-ji
- Author: 未来电子工作室 (wei-lai-dian-zi-gong-zuo-shi)
- License: GPL 3.0
- Published: 2023-09-14T12:30:21.000Z

View File

@@ -0,0 +1,68 @@
{
"source": "oshwhub",
"source_url": "https://oshwhub.com/wei-lai-dian-zi-gong-zuo-shi/qian-ru-shi-ji-yu-stc32-de-zhi-nen-xiao-che-she-ji",
"project_id": "a670e60acee54566a9f3e841bb634274",
"title": "【嵌入式】逐梦壹号-基于STC32的智能小车设计",
"description_short": "如果说小时候有什么梦想那可能就是想拥有一辆属于自己的四驱车了。为了圆造车梦将电路学习、PCB设计、焊接与单片机开发结合起来真正做到零基础学习这辆小车我们便给它取名为逐梦壹号。",
"description_path": "description.md",
"author": {
"username": "wei-lai-dian-zi-gong-zuo-shi",
"display_name": "未来电子工作室",
"user_id": "fca3941cdb75438d9b2a128be1be731b"
},
"license": "GPL 3.0",
"tags": [],
"created_at": "2022-09-11T01:55:17.000Z",
"updated_at": "2026-01-19T09:45:29.000Z",
"published_at": "2023-09-14T12:30:21.000Z",
"crawled_at": "2026-04-28T17:12:45.773580+00:00",
"metrics": {
"likes": 753,
"stars": 1471,
"forks": 0,
"views": 127493,
"watch": 0,
"comments": 224
},
"cover": {
"url": "https://image.lceda.cn/pullimage/RbtzBBvdIJIdAxBUtjynAvNDdGU55JWdusa1Y7Wk.png",
"path": null
},
"files": [
{
"name": "bluetooth.apk.1.1",
"url": "https://image.lceda.cn/attachments/2022/10/nBYzLyYPoInp6UYq9nYTuw1rFepSdcF4Ne2l9vxN.zip",
"original_id": "ab1784a7cb214458b18fa54454cc9fc5",
"ext": "zip",
"mime": "application/octet-stream",
"size": 3352016,
"md5": "66675219bd8da4334fee03806d265e63"
},
{
"name": "STC32逐梦壹号智能小车参考代码.rar",
"url": "https://image.lceda.cn/attachments/2022/11/rQKgnvaygD7ecUrsO6LJsFlxzk7qJbu4lu70ktZG.rar",
"original_id": "651b006d266e46f8a65bbcc5ecf8f467",
"ext": "rar",
"mime": "application/octet-stream",
"size": 4043537,
"md5": "bd497e49b952ac052f9c86cdb10b7691"
},
{
"name": "逐梦壹号STC32智能小车项目硬件设计文档.pdf",
"url": "https://image.lceda.cn/attachments/2022/11/WNnyYDNsuD5e688evilwsGIl0GebNdAYbZPzk3YH.pdf",
"original_id": "21418bd6ebbe4090b21dd8e42b9add17",
"ext": "pdf",
"mime": "application/pdf",
"size": 4408611,
"md5": "63903455ea691ac0ac7dd3d8deeeeed3"
}
],
"raw_fields": {
"path": "wei-lai-dian-zi-gong-zuo-shi/qian-ru-shi-ji-yu-stc32-de-zhi-nen-xiao-che-she-ji",
"grade": 4,
"origin": "pro",
"public": true,
"publish": true,
"skipped_files": []
}
}

View File

@@ -0,0 +1,5 @@
{
"detail_url": "https://oshwhub.com/Kirito/dian-sai-shen-qi-FPGA-STM32kai-f",
"cover_url": "https://image.lceda.cn/pullimage/WDKmS7oYUTlDqB4LJ1kZrmEsw8XL4ctqfN9ROn5q.jpeg",
"attachments": []
}

View File

@@ -0,0 +1,9 @@
# 电赛神器FPGA+STM32开发板
本设计为FPGA+STM32开发板可处理高速信号带8bit并行高速AD/DA满足电赛信号类题目设计需要。
---
- Source: https://oshwhub.com/Kirito/dian-sai-shen-qi-FPGA-STM32kai-f
- Author: Kirito (Kirito)
- License: GPL 3.0
- Published: 2022-07-18T14:13:46.000Z

Some files were not shown because too many files have changed in this diff Show More