Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Inc/MotorDriver_TB6612.h
- Committer:
- y2kb
- Date:
- 2017-09-01
- Revision:
- 0:dffe3a22587d
File content as of revision 0:dffe3a22587d:
/**
******************************************************************************
* @file MotorDriver_TB6612.h
* @brief Header file of Motor driver IC TB6612
* @version 1.0
*
* @par License
* This software is released under the MIT License, see LICENSE.txt.
* @par ChangeLog
* - 1.0 : Initial Version
******************************************************************************
*/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __MOTORDRIVER_TB6612_H
#define __MOTORDRIVER_TB6612_H
#ifdef __cplusplus
extern "C" {
#endif
/* Include system header files -----------------------------------------------*/
/* Include user header files -------------------------------------------------*/
/* Exported macro ------------------------------------------------------------*/
/********** Hardware-specific parameters **********/
#define Vm 4.6f ///< Applied voltage of motor (5V - <Forward voltage of diode>) [V]
/* Exported types ------------------------------------------------------------*/
/* Exported enum tag ---------------------------------------------------------*/
/* Exported struct/union tag -------------------------------------------------*/
/* Exported variables --------------------------------------------------------*/
/* Exported function prototypes ----------------------------------------------*/
void setMotorVoltage(float);
void stopMotor(void);
#ifdef __cplusplus
}
#endif
#endif /*__MOTORDRIVER_TB6612_H */
/***************************************************************END OF FILE****/