- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试实现Binary Code Modulation (也称为位角调制,BAM),由于 Arduino 上的 PWM 引脚数量最少,因此可以作为 PWM 的替代方案。使用 BAM 背后的想法是 LED 将在离散的时间内打开和关闭,从而有效地控制 LED 的亮度。这个“时间”是由字节中相应的位值决定的。
例如,如果设置为值 85(共 255 个),即二进制的 01010101,这意味着 LED 将交替打开和关闭状态,但时间长度不同。第 0 位“1”表示 LED 将亮起 1 个滴答,而第 6 位“0”表示 LED 将关闭 32 个滴答,依此类推。目标是使 LED 的切换速度足够快,达到人眼不会注意到的程度,从而根据值产生亮度错觉。值越高,LED 颜色越亮。
在实现此操作时,我注意到可以看到 LED 上的刷新率。我可以看到 LED 何时亮起以及何时关闭。它似乎每半秒切换一次端口。由于我没有示波器,所以无需等待即可知道。我在 Arduino 上使用 Timer1 每 8 微秒 (125KHz) 中断一次。每个中断都会更新连接到 LED 的 PIN 的状态(无论 LED 是打开还是关闭)。
我尝试使用 Timer1 library 来执行此操作,并通过寄存器,但两者似乎都会产生错误的结果。目前,我的代码正在切换一个引脚。如果中断正常工作正常(每 8us 更新一次),那么我应该会看到蓝色 LED(连接到引脚 8)每次滴答都会切换状态。我的眼睛应该看到的只是 LED 亮起。
注意:在 Timer1 lib 和寄存器之间切换时,我的 ISR 只是名称发生变化。请参阅代码中的注释。
有人可以看看我的计时器实现吗?我感觉这可能就是问题所在,但我无法弄清楚。
#include <TimerOne.h>
#include <SPI.h>
#include "avr/io.h"
#include "LEDArray.h"
#define TIMER_US (8) //125KHz in microseconds
#define NUM_OF_LEDS ((LEDS_PER_ROW)*(LEDS_PER_COL))
#define LEDS_PER_ROW (8)
#define LEDS_PER_COL (8)
volatile byte BAM_pos = 0;
volatile byte BAM_tick = 0;
// OutputDataH, OutputDataM, and OutputDataL
// totals to 24 bits. There are 24 pins
// that I need to shift data to. These three variables
// will hold the data value corresponding to the associated
// bit level
volatile byte OutputDataH = 0;
volatile byte OutputDataM = 0;
volatile byte OutputDataL = 0;
//bool UpdateLedOutput = 1;
volatile byte green = 0;
volatile byte blue = 0;
void InitTimer(){
TCCR1A = 0;
TCCR1B = 0;
TCNT1 = 0;
OCR1A = 127; // compare match register == 16MHz/((prescalar=1)*125KHz) - 1
TCCR1B |= (1 << WGM21); // CTC mode
TCCR1B |= (1<<CS20); // 1x prescaler
TIMSK1 |= (1 << OCIE1A); // enable timer compare interrupt
}
void InitPins(){
// initialize the digital pin as an output.
SHIFT_REGISTER |= (DATA | CLOCK | SS );
// set control pins as low
SHIFT_PORT &= ~(DATA | LATCH | CLOCK);
// initialize the led pins for testing
pinMode(4, OUTPUT);
pinMode(8, OUTPUT);
}
ISR(TIMER0_COMPA_vect){
//void timerISR(){ //use this with Timer1 Library instead
//ISR(TIMER1_COMPA_vect){
//Move onto next bit, reset BAM state
if(BAM_tick >= 120){ //8 + 16 + 32 + 64
BAM_tick = 0;
BAM_pos = 0;
}
// Move onto the next bit at these ticks. Ticks are in 8 microsecond increments
if(BAM_tick==8 || BAM_tick == 24 || BAM_tick == 56){
BAM_pos++;
}
BAM_pos %= 4; //wrap counter after going through four bits
// if(UpdateLedOutput){ Change the LED state only when the bit position is updated
//For every LED, look at enabled bit, if true determine corresponding LEDs_Output bits through the LEDs rgb values
//There are 3 groups of LEDs, each using 1 byte (8 bits -> 8 pins)
//We, therefore, have a HIGH, MIDDLE, and LOW byte values that we will shift out
for(int i=0; i<8; i++){
if( ((ledOutput.all) & (1<<i))){
//ledOutput.all is of size 24 bits. each bit tells us whether the pin should be enabled for this tick or not
OutputDataH |= (1<<i);
}
}
for(int i=8; i<16; i++){
if( ((ledOutput.all) & (1<<i))){
OutputDataM |= (1<<i);
}
}
for(int i=16; i<24; i++){
if( ((ledOutput.all) & (1<<i))){
OutputDataL |= (1<<i);
}
}
UpdateLedOutput = 0;
// }
//Update LED OUTPUT after we have reach the end of the bits time
// if(BAM_tick==8 || BAM_tick == 24 || BAM_tick == 56){
// UpdateLedOutput = 1;
// }
//Consume the tick
BAM_tick++;
//Shift out the data
/*Latch_Low();
sendData(OutputDataH);
sendData(OutputDataM);
sendData(OutputDataL);
Latch_High();
Latch_Low();
*/
//different shifting data
/*
if(green & (1<<BAM_pos))
//PORTD |= (1<<PORTD4);
digitalWrite(4, LOW);
else
digitalWrite(4, HIGH);
//PORTD &= (0<<PORTD4);
if(blue & (1<<BAM_pos))
//PORTB |= (1<<PORTB0);
digitalWrite(8, LOW);
else
digitalWrite(8, HIGH);//PORTB &= (0<<PORTB0);
*/
digitalWrite(8, digitalRead(8) ^1);
}
void setup() {
InitData();
InitPins();
InitTimer();
//Timer1.initialize(TIMER_US);
//Timer1.attachInterrupt(timerISR);
EnableSPI(); //Enable SPI as Master
Serial.begin(9600);
}
void loop() {
// do almost nothing!
while(1){
PulseThroughColors();
}
}
//This should slowly increase the brightness of the corresponding pin on the RGB LED
// Blue should increase brightness, and then decrease it in the opposite manner, indefinitely
void PulseThroughColors(){
blue = 0;
green = 0;
int i=0;
for(i=0; i< 255; i++)
blue = i;
for (i=255; i>0; i--)
blue = 0;
//for(i=0; i< 255; i++)
// green = i;
//for (i=255; i>0; i--)
// green = 0;
}
最佳答案
所以我的代码中有两个错误。首先,我将计数器调高至 250KHz(4us)中断。其次,我设置 BAM 级别(接近 ISR 末尾)的方式不正确。我忘记了我有一个共阳极 LED,这意味着为了打开某种颜色,我必须将相应的引脚设置为低电平,而不是如我的示例中所示的高电平。固定段位于下方。谢谢所有看过这篇文章的人。
void InitTimer(){
TCCR1A = 0;
TCCR1B = 0;
TCNT1 = 0;
TCCR1A = B00000000;
TCCR1B = B00001011;
OCR1A=30;
TIMSK1 = B00000010;
}
ISR(...){
........
if(green & (1<<BAM_pos))
PORTD &= ~(1<<PORTD4);
else
PORTD |= (1<<PORTD4);
if(blue & (1<<BAM_pos))
PORTB &= ~(1<<PORTB0);
else
PORTB |= (1<<PORTB0);
}
关于c - Arduino (AVR ATMega328) Timer1 似乎没有在正确的时间触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20131002/
这个问题已经有答案了: jQuery trigger click vs click ()? (3 个回答) 已关闭 5 年前。 我无法区分 trigger('click')与 trigger('cli
我正在运行 VS 2008 和 .NET 3.5 SP1。 我想在 HttpModule 中实现命中跟踪在我的 ASP.NET 应用程序中。很简单,我想。然而,BeginRequest我的事件 Htt
这是一段代码,我收到以下错误 #1064 - You have an error in your SQL syntax; check the manual that corresponds to yo
有没有办法用任意增量触发滚轮事件。就像 jQuery 对“点击”所做的那样: $('#selector').trigger('click'); 我需要类似的东西,只需一个滚轮即可: $('#selec
我正在尝试在配音数据库中触发时间。我想检查一下在不出现角色的电影配音中不能对角色进行配音。这是PDM: 和CDM 我是SQL的初学者,但我知道表“DUBBES”中应该有一些触发器。我试图做这样的事情,
这个问题已经有答案了: jquery programmatically click on new dom element (3 个回答) 已关闭 6 年前。 我有一个 jQuery 事件定义如下: $
主菜单的点击代码适用于类更改,但不适用于子菜单...当单击食物或鞋子等子菜单项时,它不会触发警报命令...事实上,悬停非常适合子菜单但不是活跃的 HTML
问题非常简单: $('#btn1').click(function(event){ alert( "pageX: " + event.pageX + "\npa
我使用 Spring 的调度程序 (@EnableScheduling) 并具有以下 @Scheduled 方法,该方法每分钟调用一次: @Component public class Schedul
错误 SQL 查询:文档 CREATE TRIGGER `triggers_div` AFTER INSERT ON `produits` FOR EACH ROW BEGIN INSERT INTO
我想在插入另一个表时填充表中的一些列值,并为特定列设置条件。我使用触发器: CREATE TRIGGER inserttrigger AFTER INSERT ON table1 FOR EACH R
我可以在 5.6 MySQL 环境中使用一些关于触发器的指导。我想创建一个触发器,如果发现具有相同速度的电脑的价格较低,则该触发器会停止更新。 架构是产品(制造商、型号、类型)PC(型号、速度、内
背景:我们有一个 completed_flag,默认为 0,当有人完成调查时更新为 1。我想记录这次更新发生的时间戳 在编写了这个触发器/函数以在标志从 0 触发到 1 时更新时间戳后,我怀疑我这样做
数据库中有两个表 KistStatus和 LastKistStatus .后者将保存 KistStatus 的所有“最新”值。 . KistStatus有大约 174.000 条记录,LastKist
我正在开发一个使用 APNS 的 iPhone 应用程序。我很清楚实现 APNS、创 build 备 token 的过程,等等等等……我不知道如何通过 Web 服务从提供商端触发和启动 APNS。任何
我有这个 javascript,当数量更改时会触发 update_cart... jQuery('div.woocommerce').on('change', '.qty', function
当我单击任何按钮时,click 事件不会被触发。艰难的是,我使用 $("div").on("click", "button", function () { 让它工作,但我想看到它使用 .class 工
如何在我的代码中触发 Android onCreateOptionsMenu 函数,即无需用户单击手机上的选项菜单按钮? 最佳答案 Activity.openOptionsMenu(); 就可以了 关
我将表单包装在 中然后我设置 list android:windowSoftInputMode="adjustResize" (默认 react native )。现在,当我用手指触摸事件手动聚焦一
我有一个 Android 编程问题。使用下面的代码我想验证一个字符串匹配。它验证正常,但 LogCat 显示 TextWatcher 方法在每次击键时触发两次,我不明白为什么。我希望每次击键只触发一次
我是一名优秀的程序员,十分优秀!