2016年8月28日 星期日
[Arduino]Day-10-Timer1
要記得將TimerOne解壓到Libiary資料夾裡面
基本上,可以從序列埠看到一秒顯示一次
Ardunio只有三個Timer
分別為Timer0,1,2
其中0是8bit,1是16Bit,2是8Bit
////////////////////////////////////////////////
#include <TimerOne.h>
int Timer_count = 0;
void setup()
{
Serial.begin(9600);
Serial.println("Serial ready" ) ;
Timer1.initialize(1000000); // 1000000 = 1sec, set a timer of length 1 sec
Timer1.attachInterrupt( timer_1_Isr ); // attach the service routine here
}
/// --------------------------
/// Loop Routine
/// --------------------------
void loop()
{
}
/// --------------------------
/// Custom ISR Timer Routine
/// --------------------------
void timer_1_Isr(void)
{
Timer_count++;
Serial.print("Timer_count = ");
Serial.println(Timer_count);
}
http://playground.arduino.cc/Code/Timer1
https://oscarliang.com/arduino-timer-and-interrupt-tutorial/
http://coopermaa2nd.blogspot.tw/2011/07/41-blink-with-timer.html
訂閱:
張貼留言 (Atom)
[Sensor]MPU92/65
MPU92/65是很久以前買的感測器 基本上有加速度計、陀螺儀、電子羅盤、溫度計 以下是該電子商城的介紹 https://www.factoryforward.com/product/gy-87-mpu-9265-3-axis-9-dof-attitude-gyro-magnet...
-
程式碼 ========================================================= #include <Servo.h> #define Servo_Pin 7 // 定義伺服馬達輸出腳位(...
-
昨天發現NB風扇一直發生出運轉聲音,之前使用都不會這樣, 打開工作管理員,發現有個程序固定會占用30%左右的CPU效能, 如下 wlanext.exe Windows Wireless LAN 802.11 Extensibility Framework 這個程序只知...
-
本文引用自 https://www.arduino.cn/thread-12445-1-1.html // 控制 LED 亮滅, 每秒閃爍 5 次: 亮 0.1 秒滅 0.1 秒 ... // Prescaler 用 64 volatile int ggy...
沒有留言:
張貼留言