在线观看www成人影院-在线观看www日本免费网站-在线观看www视频-在线观看操-欧美18在线-欧美1级

0
  • 聊天消息
  • 系統消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發帖/加入社區
會員中心
創作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內不再提示

ATtiny單片機電子蠟燭,ATtiny candle

454398 ? 2018-09-20 19:47 ? 次閱讀

ATtiny單片機電子蠟燭,ATtiny candle

關鍵字:ATTINY85,電子蠟燭電路

想想當你好不容易跟女朋友共度燭光晚餐,卻因為蠟燭點沒了或打翻著火了,那是一件多么坑爹的事啊!今天為你分享一款自己diy的超自然的燭光蠟燭。
ATtiny 電子蠟燭,皮特?米爾斯開發這個偉大的蠟燭,正如我們圖片所見到的一樣,但怎樣讓這蠟燭的光芒像傳統的蠟燭一樣閃爍呢。
皮特使用一個高亮的LED和一些模擬的輔助軟件,這樣就使得ATtiny 電子蠟燭的燭光和傳統蠟燭擁有一樣的閃爍的燭光,并且優于傳統蠟燭,因為它不伴有明火的危險。
ATtiny 電子蠟燭最難的部分就閃爍神態逼真,所以皮特做了一個蠟燭光檢測電阻( LDR )和固定電阻作為一個分壓器。這是作為ATTINY85 ADC之中的一個輸入端,并離散時間間隔的進行采樣。采樣速率為100毫秒。然后將采集的8bit的電頻值存儲到EEPROM中,以便記錄蠟燭的閃爍圖譜,驅動將其連接的LED、PWM形成通路。在用三節干電池供電。最后您只需編程程序,然后通過開關進行控制。
下面是ATtiny 電子蠟燭的電路圖
下面是程序的代碼以及寫入EEPROM的數據
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 );  
 }  
   
}    
 }  
   
}    
 }  
   
}    
 }  
   
}    }  
   
}    }  
   
}    }  
   
}       
EEPROM的數據
rom.rar
聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。 舉報投訴
收藏 人收藏

    評論

    相關推薦

    單片機電路圖用什么軟件畫

    單片機電路圖的設計和繪制是一個復雜的過程,涉及到電路設計、電子元件的選擇、電路板布局、信號完整性分析等多個方面。 1. 選擇合適的軟件 繪制單片機電路圖,你可以選擇多種軟件,每種軟件都有其特點和優勢
    的頭像 發表于 10-17 09:43 ?1084次閱讀

    電子產品方案開發公司常用的15個單片機經典電路分享!

    : 13、復位電路: 14、AD/DA/光敏/熱敏: 15、CPU最小系統工作電路: 單片機作為電子產品開發中的核心控制單元,其經典電路在各個領域發揮著重要作用。隨著科技的不斷發展,單片機電
    發表于 09-25 14:43

    51單片機驅動

    電子發燒友網站提供《51單片機驅動.exe》資料免費下載
    發表于 09-20 11:46 ?5次下載

    基于51單片機電子稱電路圖及程序

    本資源內容概要:? ? ? ?這是基于51單片機電子稱電路圖及程序設計包含了電路圖源文件(Altiumdesigner軟件打開)、C語言程序源代碼(keil軟件打開)。本資源適合人群
    發表于 06-21 14:33 ?0次下載

    單片機:微小卻強大的電子奇跡,揭秘其無限可能!

    單片機:微小卻強大的電子奇跡,揭秘其無限可能!
    的頭像 發表于 04-24 14:20 ?512次閱讀
    <b class='flag-5'>單片機</b>:微小卻強大的<b class='flag-5'>電子</b>奇跡,揭秘其無限可能!

    基于51單片機電子鐘【整點報時,6數碼管,獨立按鍵】(仿真)

    基于51單片機電子鐘【整點報時,6數碼管,獨立按鍵】(仿真)
    的頭像 發表于 04-10 00:37 ?991次閱讀
    基于51<b class='flag-5'>單片機</b>的<b class='flag-5'>電子</b>鐘【整點報時,6數碼管,獨立按鍵】(仿真)

    單片機電子時鐘走時更精確的方法

    更精確些呢?? 誤差原因分析 1.單片機電子時鐘的計時脈沖基準,是由外部晶振的頻率經過12分頻后提供的,采用內部的定時,計數器來實現計時功能。所以,外接晶振頻率的精確度直接影響電子鐘計時的準確性
    發表于 04-08 07:19

    如何系統、科學地自學單片機

    的自學單片機呢?自學單片機需要一定的計劃和方法,以下是具體的步驟和建議。如何系統、科學地自學單片機?學習電子基礎知識:理解電路原理、數字電子
    的頭像 發表于 03-28 08:03 ?1120次閱讀
    如何系統、科學地自學<b class='flag-5'>單片機</b>?

    基于單片機的燃氣報警設計

    電子發燒友網站提供《基于單片機的燃氣報警設計.doc》資料免費下載
    發表于 03-04 09:46 ?1次下載

    單片機供電模塊測試方案

    用戶自己設計的電路板或者是單片機電源,是否能夠持續穩定的輸出,對設備的運行狀態有著至關重要的影響。所以用戶自制的電源能否按工程師的設定要求給設備供電,是電源的一項基礎測試。使用ITECH艾德克斯IT8500+系列電子負載,能讓這項測試變得更輕松簡單。
    的頭像 發表于 01-20 10:20 ?944次閱讀
    <b class='flag-5'>單片機</b>供電模塊測試方案

    單片機電子時鐘時間誤差如何調整有效?

    單片機電子時鐘時間誤差如何調整有效? 單片機電子時鐘的時間誤差可以通過以下幾種方式進行調整和校正: 1. 外部校準:使用外部可靠的時鐘源(例如GPS接收模塊、無線電接收電臺等)來校準單片機電子
    的頭像 發表于 01-16 16:03 ?3056次閱讀

    基于51單片機電子鬧鐘設計

    電子發燒友網站提供《基于51單片機電子鬧鐘設計.rar》資料免費下載
    發表于 01-12 10:54 ?18次下載

    基于51單片機電子秤設計

    電子發燒友網站提供《基于51單片機電子秤設計.rar》資料免費下載
    發表于 01-12 10:16 ?14次下載

    基于51單片機的多功能電子時鐘設計

    電子發燒友網站提供《基于51單片機的多功能電子時鐘設計.rar》資料免費下載
    發表于 01-12 10:03 ?13次下載

    基于單片機電子琴設計

    電子發燒友網站提供《基于單片機電子琴設計.rar》資料免費下載
    發表于 01-12 09:45 ?16次下載
    主站蜘蛛池模板: 久青草视频在线播放| 拍拍拍无挡视频免费全程1000| 亚洲一区欧美一区| 一本到卡二卡三卡四卡| 嗯!啊!使劲用力在线观看| 海棠高h粗暴调教双性男男| 中文字幕色综合久久| 亚洲综人网| 三级理论在线播放大全| 欧美军同video69视频| 黄色a三级免费看| 97人人射| 欧美另类图片亚洲偷| 高清午夜毛片| 日本免费不卡一区| 国产嫩草影院在线观看| 国产成人教育视频在线观看 | 7086bt伙计 福利一区| 亚洲国产情侣偷自在线二页| 四虎影院永久在线观看| 美女黄页黄频| 亚洲色四在线视频观看| 久久国产午夜精品理论片34页| 亚洲第一黄色网址| 久久久香蕉视频| avtt天堂网 手机资源| bl高h文| 色婷婷综合久久久久中文一区二区| 欧美成人精品一区二区| bt天堂中文在线| 久操视频免费观看| 亚洲免费网站| 四虎影视永久在线观看| 黄色小毛片| 日本一本高清视频| 制服丝袜在线一区| 亚洲国产丝袜精品一区杨幂| 六月丁香色婷婷| 天天综合网天天综合色不卡| 免费看啪| 四虎国产在线|