Skip to content

Commit

Permalink
修正候補
Browse files Browse the repository at this point in the history
  • Loading branch information
Blue-Crescent committed Jan 2, 2025
1 parent 3a65209 commit 34b8b82
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/sample_esp32/sample_esp32.ino
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ void setup() {
Serial.begin(115200);

// 10msec Timer for clock ticktock (Mandatory)
timer = timerBegin(0, 80, true); // タイマー0, 分周比80(これにより1カウントが1マイクロ秒になる)
timerAttachInterrupt(timer, &ticktock, true); // 割り込み関数をアタッチ
timerAlarmWrite(timer, 10000, true); // 10ミリ秒のタイマー(10,000マイクロ秒)
timerAlarmEnable(timer); // タイマーを有効にする
timer = timerBegin(0); // タイマー0, 分周比80(これにより1カウントが1マイクロ秒になる)
timerAttachInterrupt(timer, &ticktock); // 割り込み関数をアタッチ
timerWrite(timer, 10000); // 10ミリ秒のタイマー(10,000マイクロ秒)
timerStart(timer); // タイマーを有効にする

// DATA pin signal change edge detection. (Mandatory)
attachInterrupt(digitalPinToInterrupt(DATA), isr_routine, CHANGE);
Expand Down

0 comments on commit 34b8b82

Please sign in to comment.