PIC10F222でやろうとしたらMCC(MPLAB Code Configurator)が対応してなかった。 PIC10F322には対応している。 System Module の設定 Timer0の設定 出力ピンの設定
PIC10F322過放電防止回路 + 18650 + ESP8266 – PICをSLEEPさせる –
「PIC10F322過放電防止回路 + 18650 + ESP8266 – PICで電源管理 –」の続き。 観測のインターバルが5分とか10分となると、ESP8266への電源を切っている間のPIC10F322自体の消費電
PIC10F322過放電防止回路 + 18650 + ESP8266 – PICで電源管理 –
「PIC10F322過放電防止回路 + 18650 + ESP8266 – テストしてみた –」の続き。 過放電防止ももちろん、ESP8266の通常時の電源のONとOFFもPIC10F322で行ってみる。 変更したのは、
PIC10F322過放電防止回路 + 18650 + ESP8266 - テストしてみた -
「PIC10F322 + Pch-MOSFET + NPN-Tr 過放電防止のために自動OFFする回路」 「PIC10F322過放電防止回路 + 18650 + ESP8266」 の続き。 PIC10F322のAD変換の
PIC10F322過放電防止回路 + 18650 + ESP8266
「PIC10F322 + Pch-MOSFET + NPN-Tr 過放電防止のために自動OFFする回路」の過放電防止回路を、実際にESP8266と組み合わせて使ってみる。 2次電池は、ちょっと気を抜いて過放電させると、す
PIC10F322 + Pch-MOSFET + NPN-Tr 過放電防止のために自動OFFする回路
主なパーツ PIC10F322 Pch MOSFET IRLML2246TRPbF NPN Transistor 2SC3325 回路図 参考にしたサイトはここ。 D1は動作確認用のお決まりのLチカだ。 D2は電源
PIC10F322 扇風機のリモコンのクローンを作る 3 プリント基板に組む
「PIC10F322 扇風機のリモコンのクローンを作る 1 ON/OFFの実装」 「PIC10F322 扇風機のリモコンのクローンを作る 2 SLEEPさせる」 に続く3回目は、プリント基板にパーツをハンダ付けして完成す
PIC10F322 扇風機のリモコンのクローンを作る 2 SLEEPさせる
「PIC10F322 扇風機のリモコンのクローンを作る 1 ON/OFFの実装」の続き。 消費電力を減らすために、4秒程度何もしないと自動的にSLEEPモードに入るようにした。 正確には 1/16000000 × 4 ×
PIC10F322 3 LED Blinking 2
PIC10F322でLチカの第2弾 せっかくだからPWMも使ってみる。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
#include <xc.h> // CONFIG #pragma config FOSC = INTOSC // Oscillator Selection bits (INTOSC oscillator: CLKIN function disabled) #pragma config BOREN = OFF // Brown-out Reset Enable (Brown-out Reset disabled) #pragma config WDTE = OFF // Watchdog Timer Enable (WDT disabled) #pragma config PWRTE = OFF // Power-up Timer Enable bit (PWRT disabled) #pragma config MCLRE = OFF // MCLR Pin Function Select bit (MCLR pin function is digital input, MCLR internally tied to VDD) #pragma config CP = OFF // Code Protection bit (Program memory code protection is disabled) #pragma config LVP = OFF // Low-Voltage Programming Enable (High-voltage on MCLR/VPP must be used for programming) #pragma config LPBOR = OFF // Brown-out Reset Selection bits (BOR disabled) #pragma config BORV = LO // Brown-out Reset Voltage Selection (Brown-out Reset Voltage (Vbor), low trip point selected.) #pragma config WRT = OFF // Flash Memory Self-Write Protection (Write protection off) #define _XTAL_FREQ 16000000 void interrupt intr(void) { INTCONbits.TMR0IF = 0;//Timer0 Overflow Interrupt Flag Clear TMR0 = 222; RA2 = ~RA2; } int main(void) { OSCCONbits.IRCF = 0b111;//16MHz ANSELA = 0b000;//for Digital I/O TRISAbits.TRISA0 = 0;// TRISAbits.TRISA1 = 0;// TRISAbits.TRISA2 = 0;// //Timer0 OPTION_REGbits.PSA = 1;//Prescaler is disabled //OPTION_REGbits.PS = 111;//1:256 OPTION_REGbits.T0CS = 0;//TMR0 Clock Source is Internal instruction cycle clock (FOSC/4) INTCONbits.GIE = 1;//Global Interrupt Enabled INTCONbits.PEIE = 1;//Peripheral Interrupt Enabled INTCONbits.TMR0IE = 1;//Timer0 Overflow Interrupt Enabled INTCONbits.TMR0IF = 0;//Timer0 Overflow Interrupt Flag Clear TMR0 = 222; //PWM1 PR2 = 104; T2CONbits.TOUTPS = 0b0000;//Timer2 Output Postscaler = 1 T2CONbits.T2CKPS = 0b00;//Timer2 Clock Prescale is 1 T2CONbits.TMR2ON = 1;//Timer2 is on PWM1DCH = 0b00110100; PWM1DCL = 0b10; PWM1CONbits.PWM1EN = 1;//PWM Module Enabled PWM1CONbits.PWM1OE = 1;//Output to PWMx pin is enabled PIR1bits.TMR2IF = 0; while(1){ RA1 = 1; __delay_ms(300); RA1 = 0; __delay_ms(300); } } |
RA0はPWM1を使ってデューティー比50%の約38kHzのパルス。 RA1は__
PIC10F322 3 LED Blinking
秋月でPIC10F200が60円、PIC10F322が55円という逆転現象が起きている。 少しも珍しいことではない。 PIC10F222も、10+1の在庫が無くなったら値上げされるんだろう。 要らないDIPを計算に入れな