ユーザーマニュアルは次の場所からダウンロードできます。
米国から購入 | 英国から購入 | DEから購入 | ITから購入 | FRから購入 | ESから購入 | ここでご購入を! |
Arduino用のOSOYOOスポーツカーキットは、取り付けが簡単なサーボステアリングラックを使用して、市場に出回っているArduino用のほとんどのロボットで使用されている昔ながらのディファレンシャルステアリングを置き換えます。このサーボステアリングラックは、実際の車のステアリング機械システムと非常によく似た動作をするため、パフォーマンスが向上します。
Arduino用OSOYOOスポーツカーキットは、プログラミング、電子機器の組み立て、ロボットメカニックの知識に関する実践的な経験を得るための教育用STEMキットです。これは、ロボット学習のための統合ソリューションであり、教育用に作られています。
Arduino用OSOYOOスポーツカーキットは、初心者と専門家の両方がエレクトロニクス、プログラミング、ロボット工学を学ぶために設計されたOSOYOO R3 MCUボード(Arduinoと互換性があります)をベースにした教育的で楽しいキットです。わかりやすいチュートリアルを使用すると、このロボットカーキットの組み立ては、エンジニアか初心者かに関係なく、非常に直感的で簡単になります。独自のロボットプロジェクトを構築することは、これほど簡単で楽しいものではありませんでした。チュートリアルに従って、ステップバイステップですぐに独自のランニングカーキットを手に入れることができます。
このキットを使用すると、子供たちと充実した時間を過ごし、子供たちが想像力を育み、刺激する力を与えることができます。あなたの子供、家族、または友人が電子機器とロボット工学の世界に惹かれているなら、このキットは彼らが電子の旅の最初の一歩を始めるための素晴らしい選択であり、完璧な贈り物になるでしょう。
いいえ。 | デバイス | 画像 | 数量。 | リンク |
1 | OSOYOO Basic Board for Arduino
(と完全に互換性があります Arduino UNO R3) |
1 | こちらをクリックして購入 | |
2 | オソヨウモーター
シールドV1.1 |
1 | こちらをクリックして購入 | |
3 | MG90Sサーボモーター | 1 | こちらをクリックして購入 | |
4 | 電圧計 | 1 | こちらをクリックして購入 | |
5 | トラッキングセンサー | 1 | こちらをクリックして購入 | |
6 | 超音波センサー | 1 | こちらをクリックして購入 | |
7 | サーボモータ | 1 | こちらをクリックして購入 | |
8 | 超音波センサー用マウントホルダー | 1 | こちらをクリックして購入 | |
9 | ESP8266 Wi-Fi シールド | 1 | こちらをクリックして購入 | |
10 | HCモジュール | 1 | こちらをクリックして購入 | |
11 | 車のシャーシ | 1 | こちらをクリックして購入 | |
12 | ワイヤー付きモーター | 1 | こちらをクリックして購入 | |
13 | 車輪 | 4 | こちらをクリックして購入 | |
14 | 9Vバッテリーボックス | 1 | こちらをクリックして購入 | |
15 | 9Vバッテリー | 1 | こちらをクリックして購入 | |
16 | プラスドライバー | 1 | こちらをクリックして購入 | |
17 | 六角ドライバー | 1 | こちらをクリックして購入 | |
18 | L型レンチ | 1 | こちらをクリックして購入 | |
19 | 20ピン 15 cm メス
メスケーブルへ |
1 | こちらをクリックして購入 | |
20 | 7ピン 25 cm メス
メスケーブルへ |
1 | こちらをクリックして購入 | |
21 | 3ピン 15 cm メス
メスケーブルへ |
1 | こちらをクリックして購入 | |
22 | ステアリングカップ | 2 | こちらをクリックして購入 |
レッスン 1 ハードウェアのインストールとサーボ テスト |
レッスン2 基本的な動き |
||
レッスン 3 ライン トラッキング |
レッスン 4 障害物の回避 |
||
レッスン 5 Wi-Fi UDP 制御ロボットカー |
レッスン 6 Bluetoothコントロール模倣運転 |
DownLoad Url osoyoo.com
You must be logged in to post a comment.
having bought and assembled this car about two weeks ago I’m puzzled to find this car slowing down (almost stopping) when turning left (bluetooth) and the voltage meter reading going from 9.0 to 3.something. This also holds true when putting the device on a stand und letting the whells run freely. II’ve checked the wiring and mechanical setup multiple times and couldn’t find any issue. On turning to the right everythings works fine as well as going forward.
Do you have any suggestions what may be the cause for that behavior and how to remedy that?
With Kind Regards
Jochen Seidel
hi, Jochen,
When your car make left turn, make sure the front wheel is not stuck by the chassis. Sometimes improper installation of the front steering system might cause wheels touching the chassis when making left turn(or right turn). In such cases, the car will consume huge current to overcome the resistance. The voltage will reduce sharply when current is increasing.
If you found that the front left wheel is touching any part of chassis during left turn, you have two solutions:
1) Adjust the screws of the steering system, don’t let the front wheel to touch chassis at any time.
2)Change the code, reduce the left turn angle. For example , original left turn and Sharp_left angles are defined as following:
int LEFT=FRONT-25;
int SHARP_LEFT=FRONT-35;
Please change above value to:
int LEFT=FRONT-20;
int SHARP_LEFT=FRONT-30;
Above code change will reduce the Left turn angle by 5 degree. If the the wheel still touches chassis when left turn, you can change the -20 to -15 and -30 to -25 , then try again.
Hope this helps.