ジャパンオープン用のメインプログラム

Dependencies:   mbed AQM1602 HMC6352 PID

main_processing/strategy_parts/output.h

Committer:
lilac0112_1
Date:
2016-02-27
Revision:
0:ea35c18c85fc
Child:
2:635947de1583

File content as of revision 0:ea35c18c85fc:

#ifndef _OUTPUT_H_
#define _OUTPUT_H_

//pid&cmps
void PidUpdate(void);
void ValidPidUpdate(void);
//motor
void ValidTx_motor(void);
void tx_motor(void);//モーターへの送信
void move(int vx, int vy, int vs);//三輪オムニの移動(基本の形)
void move_rectan(int vx, int vy, int vs);//三輪オムニの移動(直交座標指定)
void move_polar(int degree, int power, int vs);//三輪オムニの移動(極座標指定)
//solenoid
void AvailableSolenoid(void);
void DriveSolenoid(void);
void SolenoidSignal(void);

#endif /*_OUTPUT_H_*/