Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web/API/SerialPort を更新 #23651

Merged
merged 1 commit into from
Sep 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions files/ja/web/api/serialport/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
title: SerialPort
slug: Web/API/SerialPort
l10n:
sourceCommit: f7fe5c73572eb10466583d275c20cd6e55867455
sourceCommit: c29cee3dcb0d0e66093dd0c18aa82e0eab9d6d14
---

{{securecontext_header}}{{APIRef("Serial API")}}{{SeeCompatTable}}
{{securecontext_header}}{{APIRef("Web Serial API")}}{{SeeCompatTable}}{{AvailableInWorkers("window_and_dedicated")}}

{{domxref("Web_Serial_API", "Web Serial API")}} の `SerialPort` インターフェイスは、ホストデバイスのシリアルポートへのアクセスを提供します
`SerialPort` は [ウェブシリアル API](/ja/docs/Web/API/Web_Serial_API) のインターフェイスで、ホスト機器のシリアルポートへのアクセスを提供します

{{InheritanceDiagram}}

Expand Down Expand Up @@ -48,7 +48,7 @@ l10n:

### ポートを開く

シリアルポートで通信を行う前に、ポートを開く必要があります。ポートを開くことで、サイトはデータがどのように送受信されるかを決めるために必要なパラメータを設定できます。開発者は、適切なパラメータを決めるために接続するデバイスのドキュメントを参照するべきです
シリアルポートで通信を行う前に、ポートを開く必要があります。ポートを開くことで、サイトはデータがどのように送受信されるかを決めるために必要なパラメーターを設定できます。開発者は、適切なパラメーターを決めるために接続するデバイスのドキュメントを参照するべきです

```js
await port.open({ baudRate: 9600 /* ボーレートを決める */ });
Expand Down