You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/home/kuwagata/Downloads/TrainingTracer_Samples-0.2.1/Arduino_Sample/STEP9_2/STEP9_2.ino: In function 'void setup()':
/home/kuwagata/Downloads/TrainingTracer_Samples-0.2.1/Arduino_Sample/STEP9_2/STEP9_2.ino:195:25: error: 'get_zGyro' was not declared in this scope
195 | theta = theta + get_zGyro() * (sub_time+1000)/10000;
| ^~~~~~~~~
Additional context
BMX055_20231201.inoに下記のような関数を追加することで動作するようになります。
floatget_zGyro()
{
return zGyro;
}
The text was updated successfully, but these errors were encountered:
Describe the bug
Arduino_Sample/STEP9_2/STEP9_2.ino
のコードで使用しているBMX055のサンプルコードが更新され、コンパイルエラーが発生しています。Environments
To Reproduce
Arduino_Sample/STEP9_2/STEP9_2.ino
コンパイル時にエラーが生じます。Expected behavior
エラーなくコンパイルできること。
Full log or Screenshots
Additional context
BMX055_20231201.ino
に下記のような関数を追加することで動作するようになります。The text was updated successfully, but these errors were encountered: