You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
656 B
24 lines
656 B
|
3 weeks ago
|
/*
|
||
|
|
* paint_gun_action.h
|
||
|
|
*
|
||
|
|
* Created on: 2025年8月7日
|
||
|
|
* Author: xsq
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef FSM_INC_PAINT_GUN_ACTION_H_
|
||
|
|
#define FSM_INC_PAINT_GUN_ACTION_H_
|
||
|
|
|
||
|
|
#include "fsm_state.h"
|
||
|
|
extern transition_t current_paintgun_state;
|
||
|
|
extern transition_state_t paintgun_on_state;
|
||
|
|
extern transition_state_t paintgun_off_state;
|
||
|
|
extern void PaintGun_ON_Do();
|
||
|
|
extern void PaintGun_OFF_Do();
|
||
|
|
extern void PaintGun_ON_Enter();
|
||
|
|
extern void PaintGun_ON_Exit();
|
||
|
|
extern void PaintGun_OFF_Enter();
|
||
|
|
extern void PaintGun_Contronl();
|
||
|
|
extern void PaintGun_Contronl_Press();
|
||
|
|
extern char Paint_Gun_ButtonReset_Flag; //喷枪开启 1yes
|
||
|
|
#endif /* FSM_INC_PAINT_GUN_ACTION_H_ */
|