-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschematic.Rmd
59 lines (38 loc) · 1.16 KB
/
schematic.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
title: "설계도"
description: |
가빈을 구성하는 하드웨어 기구물과 신경 제어 설계
editor_options:
chunk_output_type: console
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
# 기구물 3D 프린터
3D 프린터 `stl` 파일을 통해 구현될 제품을 살펴보자.
## 위쪽 부분
```{r stl-3d, webgl=TRUE}
library(rgl)
knitr::knit_hooks$set(webgl = hook_webgl)
top_stl <- readSTL("data/top.stl", col = "blue")
```
- [다운로드(`.stl`)](data/top.stl)
- [다운로드(`.3dm`)](data/top.3dm)
## 회전 부분
```{r stl-3d-circle, webgl=TRUE}
circle_stl <- readSTL("data/circle.stl", col = "blue")
```
- [다운로드(`.stl`)](data/circle.stl)
- [다운로드(`.3dm`)](data/circle.3dm)
## 본체 부분
```{r stl-3d-bottom, webgl=TRUE}
case_stl <- readSTL("data/case.stl", col = "blue")
```
- [다운로드(`.stl`)](data/case.stl)
- [다운로드(`.3dm`)](data/case.3dm)
# 제어 회로 [^fritzing]
[^fritzing]: [fritzing](https://fritzing.org/download/) 다운로드해서 설치함.
## 디스플레이
![](fig/design/4_digit_7_segment_display.jpg)
## 태양열 발전
![](fig/design/solar-charger.png)