⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 types.h

📁 用于机器人自动低分辨路的地图测绘程序。用于机器人控制测绘。分为远端控制端和本地控制端。控制电机为标准舵机。
💻 H
字号:
/*
    Robot Interface
    (C) 2006 Jason Hunt
    nulluser@gmail.com
    
    File: types.h
*/

#ifndef TYPES_H
#define TYPES_H

#define program_name "CamServer (C) 2006 Jason Hunt"         

#define MAX_MESSAGE 1024

// Interface to windows colors
typedef struct color_type
{
    unsigned char b, g, r, pad;
};

// Basic color defines

const color_type black = {0,     0,    0, 0};
const color_type white = {255, 255, 255,  0};
const color_type red   = {0,     0, 255,  0};
const color_type green = {0,   255,   0,  0};
const color_type blue  = {255,   0,   0,  0};
const color_type blue1  = {230,   30,  30,  0};
const color_type blue2  = {180,   10,   10,  0};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -