-
Notifications
You must be signed in to change notification settings - Fork 0
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
距離センサー VL53L0Xのエラー対処方法 #1
Comments
エラーが出た時はこんな感じでした --------------- CUT HERE FOR EXCEPTION DECODER --------------- Soft WDT reset
ctx: cont --------------- CUT HERE FOR EXCEPTION DECODER --------------- |
現在は動作しており、変更前と変更後のプログラムをここに記載しておきます。 変更前プログラム /* This example shows how to use continuous mode to take The range readings are in units of mm. */ #include <Wire.h> VL53L0X sensor; void setup() sensor.setTimeout(500); // Start continuous back-to-back mode (take readings as void loop() Serial.println(); 変更後プログラム /* This example shows how to use continuous mode to take The range readings are in units of mm. */ #include <Wire.h> VL53L0X sensor; void setup() sensor.setTimeout(500); // Start continuous back-to-back mode (take readings as void loop() Serial.println(); |
そして、配線については以下のようになります。 VCC- 3V3 変更後 |
プログラムを変えた理由 以下参考URL 配線を変更した理由 以下参考URL |
私が分かったのはこの辺ぐらいです。
皆さんの手助けになれば幸いです。ではでは ✋ |
VL53L0Xを使用した時に「Failed to detect and initialize sensor!」とエラーが出てしまいました。
その対処方法がほとんど英語の文献でわかりづらかったので、開発の参考になるようここに忘備録として置いておきます。
個人開発なので間違っている可能性もあります。それについてはご容赦お願いします。
ちなみに私が使っているマイコンとセンサーについては下記に記載しておきます。
使用Arduino
・ESP8266(LOLIN (WEMOS) D1 R2 & mini)(Aliexpress)
購入先URL:https://ja.aliexpress.com/item/32843721010.html?spm=a2g0o.order_list.0.0.1875585aLgJ1qW&gatewayAdapt=glo2jpn
センサー
・VL53L0X(スイッチサイエンス)
購入先URL:https://www.switch-science.com/products/2894?variant=42381945798854
The text was updated successfully, but these errors were encountered: