资源简介
arduino的AFMotor库文件
使用方法:http://blog.csdn.net/keysking/article/details/54783046
代码片段和文件信息
// Adafruit Motor shield library
// copyright Adafruit Industries LLC 2009
// this code is public domain enjoy!
#if ARDUINO >= 100
#include “Arduino.h“
#else
#include “WProgram.h“
#endif
#include
#include “AFMotor.h“
static uint8_t latch_state;
#define MICROSTEPS 16 // 8 16 & 32 are popular
//#define MOTORDEBUG 1
AFMotorController::AFMotorController(void) {
}
void AFMotorController::enable(void) {
// setup the latch
/*
LATCH_DDR |= _BV(LATCH);
ENABLE_DDR |= _BV(ENABLE);
CLK_DDR |= _BV(CLK);
SER_DDR |= _BV(SER);
*/
pinMode(MOTORLATCH OUTPUT);
pinMode(MOTORENABLE OUTPUT);
pinMode(MOTORDATA OUTPUT);
pinMode(MOTORCLK OUTPUT);
latch_state = 0;
latch_tx(); // “reset“
//ENABLE_PORT &= ~_BV(ENABLE); // enable the chip outputs!
digital
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-12-15 15:04 AFMotor\
文件 17067 2015-12-15 15:04 AFMotor\AFMotor.cpp
文件 2112 2009-08-12 17:45 AFMotor\AFMotor.h
目录 0 2015-12-15 15:04 AFMotor\Examples\
目录 0 2015-12-15 15:04 AFMotor\Examples\MotorParty\
文件 1267 2009-08-12 17:45 AFMotor\Examples\MotorParty\MotorParty.pde
目录 0 2015-12-15 15:04 AFMotor\Examples\MotorTest\
文件 877 2015-12-15 15:23 AFMotor\Examples\MotorTest\MotorTest.pde
目录 0 2015-12-15 15:04 AFMotor\Examples\StepperTest\
文件 875 2009-08-12 17:46 AFMotor\Examples\StepperTest\StepperTest.pde
文件 770 2009-02-18 14:14 AFMotor\keywords.txt
- 上一篇:64位win10RS485转usb驱动实测可用带教程
- 下一篇:LL1文法判定器
相关资源
- Arduino nano 工程文件
- Arduino教程 Lesson 之--自制风扇
- 基于Arduino的智能环境监控系统设计
- 基于Arduino和Machtalk的温棚环境监测系
- arduino pca9685多舵机同时控制案例
- arduino技术内幕
- Arduino电子设计实战指南.零基础篇_超
- 物联网智能家居平台DIY:ARDUINO 物联网
- 实验1.zip arduino跑马灯led灯实验,串口
- opencat所有资料.zip
- arduino主机,stm8从机。I2C测试 。每次
- DS18B20_Serial_println.ino
- ps2手柄arduino库文件
- 基于手机蓝牙的arduino遥控小车
- arduino中的can库函数
- 密码+指纹锁资料包.rar
- 贝壳物联arduino esp8266 demo版本
- HMC5883L罗盘指南针模块库文件及中英文
- arduino 小贱钟源码及教程
- Atom-TMC2208Pilot在Arduino上运行的应用程
- 写字机制作方案
- PID-增量式PID和位置式PID算法实现和
- Building Wireless Sensor Networks Using Arduin
- vc控制Arduino,实现串口通信
- Arduino入门经典
- Arduino所有库.zip
- 基于STM32和arduino的MPU9250九轴传感器代
- GY-9960模块Keil 和Arduino驱动程序
- ILI9486 3.5TFT液晶屏Arduino驱动
- [高清文字版]Arduino开发从零开始学
评论
共有 条评论