日本黄色一级经典视频|伊人久久精品视频|亚洲黄色色周成人视频九九九|av免费网址黄色小短片|黄色Av无码亚洲成年人|亚洲1区2区3区无码|真人黄片免费观看|无码一级小说欧美日免费三级|日韩中文字幕91在线看|精品久久久无码中文字幕边打电话

當前位置:首頁 > > 電機控制電路
[導讀]ATtiny 電子蠟燭最難的部分就閃爍神態(tài)逼真,所以皮特做了一個蠟燭光檢測電阻( LDR )和固定電阻作為一個分壓器。這是作為ATTINY85 ADC之中的一個輸入端,并離散時間間隔的進行采樣。采樣速率為100毫秒。然后將采集的8bit的電頻值存儲到EEPROM中,以便記錄蠟燭的閃爍圖譜,驅(qū)動將其連接的LED、PWM形成通路。在用三節(jié)干電池供電。最后您只需編程程序,然后通過開關進行控制。

想想當你好不容易跟女朋友共度燭光晚餐,卻因為蠟燭點沒了或打翻著火了,那是一件多么坑爹的事啊!今天為你分享一款自己diy的超自然的燭光蠟燭。

 

WP_000356.jpg

ATtiny 電子蠟燭,皮特•米爾斯開發(fā)這個偉大的蠟燭,正如我們圖片所見到的一樣,但怎樣讓這蠟燭的光芒像傳統(tǒng)的蠟燭一樣閃爍呢。

 

WP_000370.jpg

皮特使用一個高亮的LED和一些模擬的輔助軟件,這樣就使得ATtiny 電子蠟燭的燭光和傳統(tǒng)蠟燭擁有一樣的閃爍的燭光,并且優(yōu)于傳統(tǒng)蠟燭,因為它不伴有明火的危險。

 

WP_000376.jpg

ATtiny 電子蠟燭最難的部分就閃爍神態(tài)逼真,所以皮特做了一個蠟燭光檢測電阻( LDR )和固定電阻作為一個分壓器。這是作為ATTINY85 ADC之中的一個輸入端,并離散時間間隔的進行采樣。采樣速率為100毫秒。然后將采集的8bit的電頻值存儲到EEPROM中,以便記錄蠟燭的閃爍圖譜,驅(qū)動將其連接的LED、PWM形成通路。在用三節(jié)干電池供電。最后您只需編程程序,然后通過開關進行控制。

 

WP_000345.jpg

下面是ATtiny 電子蠟燭的電路圖

 

ATTiny Candle Sch.jpg

下面是程序的代碼以及寫入EEPROM的數(shù)據(jù)

view plainprint?

/*

Program Description: This program reads a light detecting resistor thru an internal ADC and stores the value,

after scaling it, to eeprom. This ADC value is sent to a PWM channel with attached led. This is essentially a data logger

for light and replay by LED. If, if you aim the LDR at a flickering candle during its recording phase, you have a flickering

led candle.

A circuit description and other details can be found at http://petemills.blogspot.com

Filename: ATTiny_Candle_v1.0.c

Author: Pete Mills

Int. RC Osc. 8 MHz; Start-up time PWRDWN/RESET: 6 CK/14 CK + 64 ms

*/

//********** Includes **********

#include

#include

#include

//********** Definitions **********

// LED for flame simulation

#define LED PB0

#define LED_PORT PORTB

#define LED_DDR DDRB

// Light Detecting Resistor for recording a live flame

#define LDR PINB3

#define LDR_PORT PINB

#define LDR_DDR DDRB

// Tactile Switch Input

#define SW1 PINB4

#define SW1_PORT PINB

#define SW1_DDR DDRB

#define ARRAY_SIZE 500 // size of the flicker array

#define SAMPLE_RATE 100 // ms delay for collecting and reproducing the flicker

//********** Function Prototypes **********

void setup(void);

void toggle_led(void);

void program_flicker(void);

void led_alert(void);

void eeprom_save_array(void);

void eeprom_read_array(void);

void scale_array(void);

uint8_t get_adc(void);

uint8_t scale( uint8_t input, uint8_t inp_low, uint8_t inp_hi, uint8_t outp_low, uint8_t outp_hi);

uint8_t is_input_low(char port, char channel, uint8_t debounce_time, int input_block);

//********** Global Variables **********

uint8_t flicker_array[ ARRAY_SIZE ] = { 0 };

uint8_t EEMEM ee_flicker_array[ ARRAY_SIZE ] = { 0 };

int main(void)

{

uint16_t replay = 0;

setup();

eeprom_read_array();

while(1)

{

if( is_input_low( SW1_PORT, SW1, 25, 250 ) )

{

// program the flicker

// after entering and upon completion, a predetermined flash pattern will occur as described in led_alert()

// aim the ldr at a flickering candle or any other light source ( like a laser ) you want to record during this time

// and upon completion the values are stored to eeprom. They are played back immediately as well

// as being recalled from eeprom upon first start up

led_alert();

program_flicker();

scale_array();

eeprom_save_array();

led_alert();

}

// replay the recorded flicker pattern

OCR0A = flicker_array[ replay ];

++replay;

if( replay >= ( ARRAY_SIZE - 13 ) ) // if the end of the stored array has been reached

{

replay = 0; // start again from the beginning

//led_alert();

}

_delay_ms( SAMPLE_RATE );

_delay_ms( 3 ); // ADC Conversion time

}

}

//********** Functions **********

void setup(void)

{

//********* Port Config *********

LED_DDR |= ( 1 << LED); // set PB0 to "1" for output

LED_PORT &= ~( 1 << LED ); // turn the led off

LDR_DDR &= ~( 1 << LDR ); // set LDR pin to 0 for input

LDR_PORT |= ( 1 << LDR ); // write 1 to enable internal pullup

SW1_DDR &= ~( 1 << SW1 ); // set sw1 pin to 0 for input

SW1_PORT |= ( 1 << SW1 ); // write a 1 to sw1 to enable the internal pullup

//********** PWM Config *********

TCCR0A |= ( ( 1 << COM0A1 ) | ( 1 << WGM01 ) | ( 1 << WGM00 ) ); // non inverting fast pwm

TCCR0B |= ( 1 << CS00 ); // start the timer

//********** ADC Config **********

ADMUX |= ( ( 1 << ADLAR ) | ( 1 << MUX1 ) | ( 1 << MUX0 ) ); // left adjust and select ADC3

ADCSRA |= ( ( 1 << ADEN ) | ( 1 << ADPS2 ) | ( 1 << ADPS1 ) ); // ADC enable and clock divide 8MHz by 64 for 125khz sample rate

DIDR0 |= ( 1 << ADC3D ); // disable digital input on analog input channel to conserve power

}

void toggle_led()

{

LED_PORT ^= ( 1 << LED );

}

uint8_t is_input_low( char port, char channel, uint8_t debounce_time, int input_block )

{

/*

This function is for debouncing a switch input

Debounce time is a blocking interval to wait until the input is tested again.

If the input tests low again, a delay equal to input_block is executed and the function returns ( 1 )

*/

if ( bit_is_clear( port, channel ) )

{

_delay_ms( debounce_time );

if ( bit_is_clear( port, channel ) )

{

_delay_ms( input_block );

return 1;

}

}

return 0;

}

uint8_t get_adc()

{

ADCSRA |= ( 1 << ADSC ); // start the ADC Conversion

while( ADCSRA & ( 1 << ADSC )); // wait for the conversion to be complete

return ~ADCH; // return the inverted 8-bit left adjusted adc val

}

void program_flicker()

{

// build the flicker array

for( int i = 0; i < ARRAY_SIZE; i++ )

{

flicker_array[ i ] = get_adc();

_delay_ms( SAMPLE_RATE );

}

}

void led_alert()

{

// this is a function to create a visual alert that an event has occured within the program

// it toggles the led 10 times.

for( int i = 0; i < 10; i++ )

{

OCR0A = 0;

_delay_ms( 40 );

OCR0A = 255;

_delay_ms( 40 );

}

}

void eeprom_save_array()

{

for( int i = 0; i < ARRAY_SIZE; i++ )

{

eeprom_write_byte( &ee_flicker_array[ i ], flicker_array[ i ] );

}

}

void eeprom_read_array()

{

for( int i = 0; i < ARRAY_SIZE; i++ )

{

flicker_array[ i ] = eeprom_read_byte( &ee_flicker_array[ i ] );

}

}

uint8_t scale( uint8_t input, uint8_t inp_low, uint8_t inp_hi, uint8_t outp_low, uint8_t outp_hi)

{

return ( ( ( input - inp_low ) * ( outp_hi - outp_low ) ) / ( ( inp_hi - inp_low ) + outp_low ) );

}

void scale_array()

{

uint8_t arr_min = 255;

uint8_t arr_max = 0;

uint8_t out_low = 20;

uint8_t out_high = 255;

// find the min and max values

for( int i = 0; i < ARRAY_SIZE; i++ )

{

if( flicker_array[ i ] < arr_min )

arr_min = flicker_array[ i ];

if( flicker_array[ i ] > arr_max )

arr_max = flicker_array[ i ];

}

// now that we know the range, scale it

for( int i = 0; i < ARRAY_SIZE; i++ )

{

flicker_array[ i ] = scale( flicker_array[ i ], arr_min, arr_max, out_low, out_high );

}

} igh );

}

} igh );

}

}

}

}

}

}

}

} }

} }

} }

}

本站聲明: 本文章由作者或相關機構(gòu)授權(quán)發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點,本站亦不保證或承諾內(nèi)容真實性等。需要轉(zhuǎn)載請聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權(quán)益,請及時聯(lián)系本站刪除。
換一批
延伸閱讀

8位單片機在嵌入式設計領域已經(jīng)成為半個多世紀以來的主流選擇。盡管嵌入式系統(tǒng)市場日益復雜,8位單片機依然不斷發(fā)展,積極應對新的挑戰(zhàn)和系統(tǒng)需求。如今,Microchip推出的8位PIC?和AVR?單片機系列,配備了先進的獨立...

關鍵字: 單片機 嵌入式 CPU

在嵌入式系統(tǒng)開發(fā)中,程序燒錄是連接軟件設計與硬件實現(xiàn)的關鍵環(huán)節(jié)。當前主流的單片機燒錄技術(shù)已形成ICP(在電路編程)、ISP(在系統(tǒng)編程)、IAP(在應用編程)三大技術(shù)體系,分別對應開發(fā)調(diào)試、量產(chǎn)燒錄、遠程升級等不同場景。...

關鍵字: 單片機 ISP ICP IAP 嵌入式系統(tǒng)開發(fā)

在嵌入式系統(tǒng)開發(fā)中,看門狗(Watchdog Timer, WDT)是保障系統(tǒng)可靠性的核心組件,其初始化時機的選擇直接影響系統(tǒng)抗干擾能力和穩(wěn)定性。本文從硬件架構(gòu)、軟件流程、安全規(guī)范三個維度,系統(tǒng)分析看門狗初始化的最佳實踐...

關鍵字: 單片機 看門狗 嵌入式系統(tǒng)

本文中,小編將對單片機予以介紹,如果你想對它的詳細情況有所認識,或者想要增進對它的了解程度,不妨請看以下內(nèi)容哦。

關鍵字: 單片機 開發(fā)板 Keil

隨著單片機系統(tǒng)越來越廣泛地應用于消費類電子、醫(yī)療、工業(yè)自動化、智能化儀器儀表、航空航天等各領域,單片機系統(tǒng)面臨著電磁干擾(EMI)日益嚴重的威脅。電磁兼容性(EMC)包含系統(tǒng)的發(fā)射和敏感度兩方面的問題。

關鍵字: 單片機 電磁兼容

以下內(nèi)容中,小編將對單片機的相關內(nèi)容進行著重介紹和闡述,希望本文能幫您增進對單片機的了解,和小編一起來看看吧。

關鍵字: 單片機 復位電路

在這篇文章中,小編將為大家?guī)韱纹瑱C的相關報道。如果你對本文即將要講解的內(nèi)容存在一定興趣,不妨繼續(xù)往下閱讀哦。

關鍵字: 單片機 異常復位

今天,小編將在這篇文章中為大家?guī)韱纹瑱C的有關報道,通過閱讀這篇文章,大家可以對它具備清晰的認識,主要內(nèi)容如下。

關鍵字: 單片機 仿真器

單片機將是下述內(nèi)容的主要介紹對象,通過這篇文章,小編希望大家可以對它的相關情況以及信息有所認識和了解,詳細內(nèi)容如下。

關鍵字: 單片機 中斷 boot

一直以來,單片機都是大家的關注焦點之一。因此針對大家的興趣點所在,小編將為大家?guī)韱纹瑱C的相關介紹,詳細內(nèi)容請看下文。

關鍵字: 單片機 數(shù)字信號 模擬信號
關閉