Skip to content

Commit

Permalink
bot: update pages
Browse files Browse the repository at this point in the history
  • Loading branch information
bot committed Aug 10, 2024
1 parent 3022166 commit aad161c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions _pages/pizero/chapter_4-5-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ <h1 id="451-lチカのコードを書き換える"><a class="header" href="#451-
<ul>
<li>ボタンの処理を追記します。</li>
</ul>
<pre><code>function showPort(ev){
<pre><code class="language-js">function showPort(ev){
console.log(ev.value);
if (ev.value==0){
port.write(1);
Expand All @@ -233,7 +233,7 @@ <h1 id="451-lチカのコードを書き換える"><a class="header" href="#451-
<ul>
<li>全体のソースコードは以下のとおりとなります。</li>
</ul>
<pre><code>import {requestGPIOAccess} from "./node_modules/node-web-gpio/dist/index.js"; // WebGPIO を使えるようにするためのライブラリをインポート
<pre><code class="language-js">import {requestGPIOAccess} from "./node_modules/node-web-gpio/dist/index.js"; // WebGPIO を使えるようにするためのライブラリをインポート
const sleep = msec =&gt; new Promise(resolve =&gt; setTimeout(resolve, msec)); // sleep 関数を定義
let port; // port 変数を複数の関数で使えるように宣言

Expand Down
4 changes: 2 additions & 2 deletions _pages/pizero/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,7 @@ <h2 id="ボタンで点灯する-led--回転するモーター制御"><a class="
<ul>
<li>ボタンの処理を追記します。</li>
</ul>
<pre><code>function showPort(ev){
<pre><code class="language-js">function showPort(ev){
console.log(ev.value);
if (ev.value==0){
port.write(1);
Expand All @@ -1039,7 +1039,7 @@ <h2 id="ボタンで点灯する-led--回転するモーター制御"><a class="
<ul>
<li>全体のソースコードは以下のとおりとなります。</li>
</ul>
<pre><code>import {requestGPIOAccess} from "./node_modules/node-web-gpio/dist/index.js"; // WebGPIO を使えるようにするためのライブラリをインポート
<pre><code class="language-js">import {requestGPIOAccess} from "./node_modules/node-web-gpio/dist/index.js"; // WebGPIO を使えるようにするためのライブラリをインポート
const sleep = msec =&gt; new Promise(resolve =&gt; setTimeout(resolve, msec)); // sleep 関数を定義
let port; // port 変数を複数の関数で使えるように宣言

Expand Down

0 comments on commit aad161c

Please sign in to comment.