Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kannai site
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Academany
Fab Academy
2022
Fab Academy 2022 Labs
Kannai
Kannai site
Commits
e00652b3
Commit
e00652b3
authored
2 years ago
by
yuichitamiya
Browse files
Options
Downloads
Patches
Plain Diff
add insert nuts url
parent
1067ac25
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#316058
passed
2 years ago
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/Instruction/tips/machine_building_parts_list.md
+5
-5
5 additions, 5 deletions
docs/Instruction/tips/machine_building_parts_list.md
docs/Instruction/tips/serial_communication.md
+40
-0
40 additions, 0 deletions
docs/Instruction/tips/serial_communication.md
with
45 additions
and
5 deletions
docs/Instruction/tips/machine_building_parts_list.md
+
5
−
5
View file @
e00652b3
...
...
@@ -7,15 +7,15 @@ nuts
bolts
washers
-
[
h
eat-set inserts
](
https://ja.aliexpress.com/item/4000232925592.html?spm=a2g0o.order_list.0.0.21ef585aR5dQVm&gatewayAdapt=glo2jpn
)
-
[
H
eat-set inserts
](
https://ja.aliexpress.com/item/4000232925592.html?spm=a2g0o.order_list.0.0.21ef585aR5dQVm&gatewayAdapt=glo2jpn
)
-
M3 X D5.0 X L3.8
-
M4 X D6.5 X L5.0
-
鬼目ナット
-
M3 × L5.5
-
Insert nuts:
鬼目ナット
-
[
M3 × L5.5
](
https://www.monotaro.com/p/4175/4824/?displayId=5
)
-
Pre-hole 4.1~4.5, inner screw depth 3.5mm
-
M3 × L8.5
-
[
M3 × L8.5
](
https://www.monotaro.com/p/4175/4833/?displayId=5
)
-
Pre-hole 4.1~4.5, inner screw depth 4mm
-
M4 x L10
-
[
M4 x L10
](
https://www.monotaro.com/p/4175/5165/?displayId=5
)
-
Pre-hole 5.7~6, inner screw depth 7mm
...
...
This diff is collapsed.
Click to expand it.
docs/Instruction/tips/serial_communication.md
0 → 100644
+
40
−
0
View file @
e00652b3
# Serial communication
## Arduino
### Transmit
`Serial.print`
Syntax |Result |-
-- |-- |
Serial.print(78) | 78 |
Serial.print(78,DEC) | 78 |
Serial.print(1.234) |1.23 |
Serial.print(1.234,2) |1.23 |
Serial.print('N') | N |
Serial.print("Hello world.")| Hello world.|
`Serial.println`
Syntax |Result |-
-- |-- |
Serial.println(78) |78
</br>
_ (new line) |serial_
print_line
Serial.print(78
\n
) |78
</br>
_ (new line) |need to chack
</br>
type "option + ¥" to
\
`Serial.write`
Syntax |Result |-
-- |-- |
Serial.write(1) |0x01 |
Serial.write(255) |0xFF |1 byte(0-255)
Serial.write(256) |0xFF |cannot send more than 1 byte
### Receive
Serial.read
Serial.readString()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment