-
Notifications
You must be signed in to change notification settings - Fork 2
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
衝突時に角度がバグる場合がある #2
Comments
startCalibration() よぶと手動補正が行えますが、せっかくの自動操縦なのに手動で直してもねぇ… |
磁気センサーとかあるかなと思って調べたら、 Sphero API のページ |
ご意見ありがとうございます。確認遅れ面目ないです。 |
わかりましたー |
プログラム的には・・
|
その場回転はできた。 var deg = 0;
setInterval(function() {
deg = (deg + 15) % 360;
orb.roll(1, deg);
}, 500); |
90° はかるとき、ジャイロセンサー以外にも使えそう。 使えそうなの:
|
一応実行結果も
数は減っていくようだ。グラフにしたい |
orb.roll のタイミングがバグるのは、 |
軽くぶつかっただけならまだしも、強くぶつかって Sphero 本体の角度が変わってしまうと辛いです。
定期的に補正かけてやるべきなのですが、スマートな方法が浮かびません。
The text was updated successfully, but these errors were encountered: