Skip to content
View Allgames817's full-sized avatar

Block or report Allgames817

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Allgames817/README.md

#ifndef CHASSIS_H #define CHASSIS_H #define hcan void // This is a placeholder for the CAN handle

// You can use the constant below to implement kinetic conversions #define WHEEL_RADIUS 0.05 #define WHEEL_DISTANCE 0.3 // Distance between wheels and center of the chassis

typedef struct { float current_speed; // Current speed of the motor //Code Omitted }Motor_t;

typedef struct { float kp; float ki; float kd; float max_out; }PIDConfig_t;

typedef struct { Motor_t *motor; PIDConfig_t speed_PID; float send_data; // Current in mA }driver_t;

void Chassis_Init(void); void Chassis_Task(void);

#endif

Pinned Loading

  1. LGU_Credit_Transfer_Search LGU_Credit_Transfer_Search Public

    港中深交流交换课程转学分查询系统

    JavaScript 13 1

  2. MatchMaker MatchMaker Public

    Resume-Match: AI-Powered Resume Matching System —— 基于 SBERT 与 LLM 的智能简历匹配与优化系统

    Python 2