RobocupSSLのメイン基板白mbedのプログラム

Dependencies:   mbed

Rootsロボット mainプログラム

~ Robocup SSL(小型車輪リーグ)ロボット ~


Robocup SSLとは


●試合構成
Robocup小型ロボットリーグ(Small Size League)は,直径180[mm],高さ150[mm]以内のサイズのロボット6台が1チームとなり,オレンジ色のゴルフボールを使ってサッカー競技を行う自立型ロボットコンテストである. フィールドの上には2台のWebカメラが設置され,フィールド上のロボットとボールを撮影する.Visionサーバは,フィールドの画像データよりロボットとボールの座標データを算出し,LANを用い各チームのAI用PCに送信する.Webカメラの撮影速度は,60[fps]である.レフリーボックスは,ファウルやフリーキック,スローインなどの審判の判定を入力し,LANを通じて各チームのAI用PCに送信する.それぞれのチームのAI用PCは,ロボットとボールの座標,審判の判定を元にロボットの移動,キックなどの作戦を決定し,無線によってロボットに指令を送信する. 700


ロボット機能紹介


●オムニホイールによる方向転換不要の全方位移動

オムニホイールは,自由に回転可能なローラをホイールの外周上に配置した車輪である.ローラの回転により,車輪の回転と垂直の方向に駆動力を発することはできないが移動は可能となる.各車輪の角速度を調整することによって全方向への移動を可能にする.
400

●ドリブルバーのバックスピンによるボール保持

●電磁力を利用したキッカー

●キッカーの電磁力エネルギーを充電する充電回路

●ロボット情報が一目でわかるLCD

comm/status/status_manager.h

Committer:
alt0710
Date:
2018-05-03
Revision:
31:7b003082f31d
Parent:
30:8ee22331bfaf
Child:
32:718efbf4dc8a

File content as of revision 31:7b003082f31d:

#ifndef STATUS_MANAGER_H
#define STATUS_MANAGER_H

#include "mbed.h"
#include "typedef.h"


class StatusManager{
    public:
    
    //MODE関係
    static char mode;
    static signed char uart;
    
    //Kicker関係
    static char is_kicking;
    static char req_charge;
    static char ball;
    static char charge_end;
    
    //Dribbler関係
    static char dribbleIC_fault;
    static char dribbleMot_OvrCur;
    static float dribbleMotor_current;
    static float req_dribbleMotor_current;
    static float req_dribbleMotor_PID;
    
    //XBee関係
    static char xbee_time_out;
    static char xbee_receiveing;
    
    //バッテリー
    static float supply_voltage;
    
    //その他
    static char alive_count;
    static unsigned short DriveTime;
    static char indicate_i2c_enable;
    static unsigned char MainBoard;
    
    //Wheel
    static signed short Vel_Wheel1;
    static signed short Vel_Wheel2;
    static signed short Vel_Wheel3;
    
    private:
    StatusManager();
    
    
    
};

/* **グローバル関数** */
extern void init_status(void);

#endif