资源简介
arduino写字机器人控制电路驱动程序,需要上传到Arduino uno 开发板上;可前往博客查看教程。
arduino写字机器人控制电路驱动程序,需要上传到Arduino uno 开发板上;可前往博客查看教程。
代码片段和文件信息
/*
coolant_control.c - coolant control methods
Part of Grbl
Copyright (c) 2012-2015 Sungeun K. Jeon
Grbl is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation either version 3 of the License or
(at your option) any later version.
Grbl is distributed in the hope that it will be useful
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Grbl. If not see .
*/
#include “grbl.h“
void coolant_init()
{
COOLANT_FLOOD_DDR |= (1 << COOLANT_FLOOD_BIT);
#ifdef ENABLE_M7
COOLANT_MIST_DDR |= (1 << COOLANT_MIST_BIT);
#endif
coolant_stop();
}
void coolant_stop()
{
COOLANT_FLOOD_PORT &= ~(1 << COOLANT_FLOOD_BIT);
#ifdef ENABLE_M7
COOLANT_MIST_PORT &= ~(1 << COOLANT_MIST_BIT);
#endif
}
void coolant_set_state(uint8_t mode)
{
if (mode == COOLANT_FLOOD_ENABLE) {
COOLANT_FLOOD_PORT |= (1 << COOLANT_FLOOD_BIT);
#ifdef ENABLE_M7
} else if (mode == COOLANT_MIST_ENABLE) {
COOLANT_MIST_PORT |= (1 << COOLANT_MIST_BIT);
#endif
} else {
coolant_stop();
}
}
void coolant_run(uint8_t mode)
{
if (sys.state == STATE_CHECK_MODE) { return; }
protocol_buffer_synchronize(); // Ensure coolant turns on when specified in program.
coolant_set_state(mode);
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 27964 2015-08-13 03:09 config.h
文件 1566 2015-08-13 03:09 coolant_control.c
文件 894 2015-08-13 03:09 coolant_control.h
文件 1681 2015-08-13 03:09 cpu_map.h
目录 0 2019-10-31 23:14 cpu_map\
文件 5475 2015-08-13 03:09 cpu_map\cpu_map_atmega2560.h
文件 6226 2015-08-13 03:09 cpu_map\cpu_map_atmega328p.h
文件 3539 2015-08-13 03:09 defaults.h
目录 0 2019-10-31 23:14 defaults\
文件 2809 2015-08-13 03:09 defaults\defaults_generic.h
文件 2848 2015-08-13 03:09 defaults\defaults_oxcnc.h
文件 3259 2015-08-13 03:09 defaults\defaults_shapeoko.h
文件 3218 2015-08-13 03:09 defaults\defaults_shapeoko2.h
文件 3164 2015-08-13 03:09 defaults\defaults_shapeoko3.h
文件 3191 2015-08-13 03:09 defaults\defaults_sherline.h
文件 2892 2015-08-13 03:09 defaults\defaults_simulator.h
文件 3230 2015-08-13 03:09 defaults\defaults_x_carve_1000mm.h
文件 3230 2015-08-13 03:09 defaults\defaults_x_carve_500mm.h
文件 3248 2015-08-13 03:09 defaults\defaults_zen_toolworks_7x7.h
文件 5448 2015-08-13 03:09 eeprom.c
文件 1059 2015-08-13 03:09 eeprom.h
目录 0 2019-10-31 23:14 examples\
目录 0 2019-10-31 23:14 examples\grblUpload\
文件 1231 2015-08-13 03:09 examples\grblUpload\grblUpload.ino
文件 1081 2015-08-13 03:09 examples\grblUpload\license.txt
文件 59816 2015-08-13 03:09 gcode.c
文件 8002 2015-08-13 03:09 gcode.h
文件 1612 2015-08-13 03:09 grbl.h
文件 14983 2015-08-13 03:09 limits.c
文件 1220 2015-08-13 03:09 limits.h
文件 3257 2015-08-13 03:09 main.c
............此处省略25个文件信息
- 上一篇:WebSocket测试工具
- 下一篇:bzip2-1.0.6 源码
相关资源
- Arduino Stepper库
- 基于Arduino的AMLX90614非接触式温度程序
- LD3320语音识别模块与Arduino软串口通讯
- 基于 Arduino 红外控制的智能机械手的
- ArduinoRFID库文件代码
- Arduino+超声波+esp8266。_8266ok.ino
- Arduino音乐简谱——天空之城
- Arduino音乐简谱——欢乐颂
- arduino必备开发设计原理图
- dht库文件
- arduino最小系统pcb文件
- 基于Arduino的温湿度传感器DHT11库
- Arduino时钟1602屏幕
- u8glib_arduino_v1.13.zip
- 基于arduino激光电子琴的设计与制作
- arduino智能跟随小车源程序
- ADPS9960在Arduino上实现任意IO的IIC
- 基于Arduino AT指令实现esp8266通讯
- Arduino Mega2560硬件设计文件
- cpp-基于ArduinoMEGA2560的智能物流小车工
- OneWire和DallasTemperature库文件
- arduino uno + ESP8266 搭建的天气预报平台
- Arduino-malduino-password-grabber.zip
- 写字机器人
- Arduino主板烧录器---avrdudess.rar
- 基于Arduino的MH-Z14二氧化碳气体检测液
- Arduino DS3231函数库
- arduino控制180度舵机和360度舵机
- Arduino程序设计-智能水杯源码及报告
- Proteus仿真Arduino控制OLED1306
评论
共有 条评论