반응형


/** Calculator project

숫자를 입력받고, +-* / 사칙연산을 입력받고,

다시 숫자를 입력받고, = 혹은 사칙연산자를 입력하면 결과가 LCD액정에 출력된다.

*0으로 나누었을 때는 1초동안 Error 라고 표시하면서 Buzzer소리 출력

열림 -> +

닫힘 -> -

Up   -> *

Down -> /

Title set -> =

*/


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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
 
/**
 ******************************************************************************
 * @file    main.c
 * @author  Ac6
 * @version V1.0
 * @date    01-December-2013
 * @brief   Default main function.
 ******************************************************************************
 */
 
#include "stm32f4xx.h"
#include "stm32f4xx_adc.h"
#include "lcd.h"
 
#define FND0 0b0011111100000000
#define FND1 0b0000011000000000
#define FND2 0b0101101100000000
#define FND3 0b0100111100000000
#define FND4 0b0110011000000000
#define FND5 0b0110110100000000
#define FND6 0b0111110100000000
#define FND7 0b0010011100000000
#define FND8 0b0111111100000000
#define FND9 0b0110111100000000
 
#define LED1 0b0000000000000001
#define LED2 0b0000000000000010
#define LED3 0b0000000000000100
#define LED4 0b0000000000001000
#define LED5 0b0000000000010000
 
#define KEY_Down 0b10001000 // Down
#define KEY_Up 0b10000100 // Up
#define KEY_OUT_5 0b10000010 // 외부 5층
#define KEY_OUT_4 0b10000001 // 외부 4층
#define KEY_OUT_3 0b01001000 // 외부 3층
#define KEY_OUT_2 0b01000100 // 외부 2층
#define KEY_OUT_1 0b01000010 // 외부 1층
#define KEY_TitleSet 0b01000001 // Title Set
#define KEY_Emergency 0b00101000 // 비상
#define KEY_Open 0b00100100 // 열림
#define KEY_Close 0b00100010 // 닫힘
#define KEY_IN_5 0b00100001 // 내부 5층
#define KEY_IN_4 0b00011000 // 내부 4층
#define KEY_IN_3 0b00010100 // 내부 3층
#define KEY_IN_2 0b00010010 // 내부 2층
#define KEY_IN_1 0b00010001 // 내부 1층
 
#define buzzer_pin GPIO_Pin_1
#define buzzer_port GPIOB
 
#define photo_port GPIOD
#define photo_pin GPIO_Pin_2
 
volatile int mstime = 0;
volatile char str[255];
volatile int count =0;
void SysTick_Handler(void) {
    mstime++;
}
void delay(int ms) {
    volatile int future = ms + mstime;
    while (future > mstime)
        ;
}
void buzzer() {
    GPIO_SetBits(GPIOB, GPIO_Pin_1);
    delay(500);
    GPIO_ResetBits(GPIOB, GPIO_Pin_1);
    delay(500);
}
void FND_display(int num) {
 
    GPIO_SetBits(GPIOC,
            GPIO_Pin_8 | GPIO_Pin_9 | GPIO_Pin_10 | GPIO_Pin_11 | GPIO_Pin_12
                    | GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15);
    switch (num) {
    case 0:
        GPIO_ResetBits(GPIOC, (0b1111111100000000 & FND0));
        break;
    case 1:
        GPIO_ResetBits(GPIOC, (0b1111111100000000 & FND1));
        break;
    case 2:
        GPIO_ResetBits(GPIOC, (0b1111111100000000 & FND2));
        break;
    case 3:
        GPIO_ResetBits(GPIOC, (0b1111111100000000 & FND3));
        break;
    case 4:
        GPIO_ResetBits(GPIOC, 0b1111111100000000 & FND4);
        break;
    case 5:
        GPIO_ResetBits(GPIOC, 0b1111111100000000 & FND5);
        break;
    case 6:
        GPIO_ResetBits(GPIOC, 0b1111111100000000 & FND6);
        break;
    case 7:
        GPIO_ResetBits(GPIOC, 0b1111111100000000 & FND7);
        break;
    case 8:
        GPIO_ResetBits(GPIOC, 0b1111111100000000 & FND8);
        break;
    case 9:
        GPIO_ResetBits(GPIOC, 0b1111111100000000 & FND9);
        break;
    }
}
void LED(int num) {
    GPIO_SetBits(GPIOC,
    GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3 | GPIO_Pin_4);
    switch (num) {
    case 1:
        GPIO_ResetBits(GPIOC, 0b0000000000011111 & LED1);
        break;
    case 2:
        GPIO_ResetBits(GPIOC, 0b0000000000011111 & LED2);
        break;
    case 3:
        GPIO_ResetBits(GPIOC, 0b0000000000011111 & LED3);
        break;
    case 4:
        GPIO_ResetBits(GPIOC, 0b0000000000011111 & LED4);
        break;
    case 5:
        GPIO_ResetBits(GPIOC, 0b0000000000011111 & LED5);
        break;
    }
}
void getKey_init() {
    GPIO_InitTypeDef GPIO_InitStructure;
 
    RCC_AHB1PeriphClockCmd(
            RCC_AHB1Periph_GPIOA | RCC_AHB1Periph_GPIOB | RCC_AHB1Periph_GPIOC
                    | RCC_AHB1Periph_GPIOD, ENABLE); // GPIO 클럭 인가
    // Key_Row Output set
    GPIO_InitStructure.GPIO_Pin = (GPIO_Pin_8 | GPIO_Pin_9 | GPIO_Pin_10
            | GPIO_Pin_11);
    GPIO_Init(GPIOA, &GPIO_InitStructure);
 
    // KEY_Col Input set
    GPIO_InitStructure.GPIO_Pin = (GPIO_Pin_4 | GPIO_Pin_5 | GPIO_Pin_6
            | GPIO_Pin_7);
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;
    GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; // push pull
    GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_DOWN;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;
    GPIO_Init(GPIOA, &GPIO_InitStructure);
}
char getKey() {
    char key = 0xff;
    GPIO_SetBits(GPIOA, GPIO_Pin_8);
    delay(5);
    if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_4) == 1)
        key = '0';
    else if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_5) == 1)
        key = '1';
    else if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_6) == 1)
        key = '2';
    else if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_7) == 1)
        key = '3';
    GPIO_ResetBits(GPIOA, GPIO_Pin_8);
    GPIO_SetBits(GPIOA, GPIO_Pin_9);
    delay(5);
    if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_4) == 1)
        key = '4';
    else if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_5) == 1)
        key = '5';
    else if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_6) == 1)
        key = '6';
    else if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_7) == 1)
        key = '7';
    GPIO_ResetBits(GPIOA, GPIO_Pin_9);
    GPIO_SetBits(GPIOA, GPIO_Pin_10);
    delay(5);
    if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_4) == 1)
        key = '8';
    else if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_5) == 1)
        key = '9';
    else if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_6) == 1)
        key = 'A';
    else if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_7) == 1)
        key = 'B';
    GPIO_ResetBits(GPIOA, GPIO_Pin_10);
    GPIO_SetBits(GPIOA, GPIO_Pin_11);
    delay(5);
    if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_4) == 1)
        key = 'C';
    else if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_5) == 1)
        key = 'D';
    else if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_6) == 1)
        key = 'E';
    else if (GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_7) == 1)
        key = 'F';
    GPIO_ResetBits(GPIOA, GPIO_Pin_11);
    delay(5);
    return key;
}
void ADC_init() {
 
    RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB, ENABLE);
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1, ENABLE);
    GPIO_InitTypeDef GPIO_InitStruct;
    GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AN;
    GPIO_InitStruct.GPIO_Pin = GPIO_Pin_0;
    GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL;
    GPIO_Init(GPIOB, &GPIO_InitStruct);
 
    ADC_InitTypeDef ADC_InitStruct;
    ADC_InitStruct.ADC_ContinuousConvMode = DISABLE;
    ADC_InitStruct.ADC_DataAlign = ADC_DataAlign_Right;
    ADC_InitStruct.ADC_ExternalTrigConv = DISABLE;
    ADC_InitStruct.ADC_ExternalTrigConvEdge = ADC_ExternalTrigConvEdge_None;
    ADC_InitStruct.ADC_NbrOfConversion = 1;
    ADC_InitStruct.ADC_Resolution = ADC_Resolution_12b;
    ADC_InitStruct.ADC_ScanConvMode = DISABLE;
    ADC_Init(ADC1, &ADC_InitStruct);
 
    ADC_Cmd(ADC1, ENABLE);
    ADC_RegularChannelConfig(ADC1, ADC_Channel_8, 1, ADC_SampleTime_84Cycles);
 
    GPIO_InitTypeDef GPIO_InitStructure;
    RCC_AHB1PeriphClockCmd(
            RCC_AHB1Periph_GPIOA | RCC_AHB1Periph_GPIOB | RCC_AHB1Periph_GPIOC
                    | RCC_AHB1Periph_GPIOD, ENABLE); // GPIO 클럭 인가
 
    GPIO_InitStructure.GPIO_Pin =
    // LED Output set
            (GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3 | GPIO_Pin_4
                    |
                    // FND Output set
                    GPIO_Pin_8 | GPIO_Pin_9 | GPIO_Pin_10 | GPIO_Pin_11
                    | GPIO_Pin_12 | GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15);
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
    GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; // push pull
    GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;
    GPIO_Init(GPIOC, &GPIO_InitStructure);
 
}
int ADC_Read() {
    ADC_SoftwareStartConv(ADC1);
    while (!ADC_GetFlagStatus(ADC1, ADC_FLAG_EOC))
        ;
    return ADC_GetConversionValue(ADC1);
}
void init() {
    GPIO_InitTypeDef GPIO_InitStructure;
 
    RCC_AHB1PeriphClockCmd(
            RCC_AHB1Periph_GPIOA | RCC_AHB1Periph_GPIOB | RCC_AHB1Periph_GPIOC
                    | RCC_AHB1Periph_GPIOD, ENABLE); // GPIO 클럭 인가
 
    GPIO_InitStructure.GPIO_Pin =
    // LED Output set
            (GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3 | GPIO_Pin_4
                    |
                    // FND Output set
                    GPIO_Pin_8 | GPIO_Pin_9 | GPIO_Pin_10 | GPIO_Pin_11
                    | GPIO_Pin_12 | GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15);
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
    GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; // push pull
    GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;
    GPIO_Init(GPIOC, &GPIO_InitStructure);
 
    // Buzzer Output set
    GPIO_InitStructure.GPIO_Pin = buzzer_pin;
    GPIO_Init(GPIOB, &GPIO_InitStructure);
 
    // LED default set
    GPIO_SetBits(GPIOC,
    GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3 | GPIO_Pin_4);
    // FND default set
    GPIO_SetBits(GPIOC,
            GPIO_Pin_8 | GPIO_Pin_9 | GPIO_Pin_10 | GPIO_Pin_11 | GPIO_Pin_12
                    | GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15);
 
    // PD2 Photo Interrupt set
    GPIO_InitStructure.GPIO_Pin = photo_pin;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;
    GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; // push pull
    GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;
    GPIO_Init(GPIOD, &GPIO_InitStructure);
}
 
void matrix_init() {
    RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE);
    GPIO_InitTypeDef GPIO_Initstruct;
    GPIO_Initstruct.GPIO_Pin = GPIO_Pin_8 | GPIO_Pin_9 | GPIO_Pin_10
            | GPIO_Pin_11;
    GPIO_Initstruct.GPIO_OType = GPIO_OType_PP;
    GPIO_Initstruct.GPIO_Mode = GPIO_Mode_OUT;
    GPIO_Initstruct.GPIO_PuPd = GPIO_PuPd_NOPULL;
    GPIO_Initstruct.GPIO_Speed = GPIO_Speed_100MHz;
    GPIO_Init(GPIOA, &GPIO_Initstruct);
    GPIO_Initstruct.GPIO_Pin =
    GPIO_Pin_4 | GPIO_Pin_5 | GPIO_Pin_6 | GPIO_Pin_7;
    GPIO_Initstruct.GPIO_Mode = GPIO_Mode_IN;
    GPIO_Initstruct.GPIO_PuPd = GPIO_PuPd_DOWN;
    GPIO_Init(GPIOA, &GPIO_Initstruct);
}
 
void simple_delay(int count) {
    int i;
    for (i = 0; i < count; i++)
        ;
}
 
int GetKey(int prevKey) {
    int i;
    for (i = 0; i < 4; i++) {
        GPIO_ResetBits(GPIOA, 0b1111 << 8);
        GPIO_SetBits(GPIOA, 1 << i << 8);
        simple_delay(40);
        int key = (GPIO_ReadInputData(GPIOA) >> 4& 0b1111;
        if (key != 0) {
            int retKey= 1 << 4 << i | key;
            if(retKey != prevKey)
                return retKey;
        }
    }
    return 0;
}
 
int main(void) {
    init();
    SysTick_Config(53676000 / 1000);
    matrix_init();
    lcd_init();
    int j = 0;
    int value =0;
    int result=0;
    int data1=0;
    int error =0;
    char yun;
    lcd_printxy(0,0,"Calculator!");
 
    for (;;) {
        int key = GetKey(key);
        GPIO_ResetBits(GPIOB, GPIO_Pin_1);
        if (key == KEY_IN_5){
            lcd_printxy(0,1,"                ");
            value = value*10 +1;sprintf(str,"%d",value);lcd_printxy(0,1,str);delay(1000);
        }
        if (key == KEY_OUT_5){
            lcd_printxy(0,1,"                ");
            value = value*10+2;sprintf(str,"%d",value);lcd_printxy(0,1,str);delay(1000);}
        if (key == KEY_IN_4){
            lcd_printxy(0,1,"                ");
            value = value*10+3;sprintf(str,"%d",value);lcd_printxy(0,1,str);delay(1000);}
        if (key == KEY_OUT_4){
            lcd_printxy(0,1,"                ");
            value = value*10+4;sprintf(str,"%d",value);lcd_printxy(0,1,str);delay(1000);}
        if (key == KEY_IN_3){
            lcd_printxy(0,1,"                ");
            value = value*10+5;sprintf(str,"%d",value);lcd_printxy(0,1,str);delay(1000);}
        if (key == KEY_OUT_3){
            lcd_printxy(0,1,"                ");
            value = value*10+6;sprintf(str,"%d",value);lcd_printxy(0,1,str);delay(1000);}
        if (key == KEY_IN_2){
            lcd_printxy(0,1,"                ");
            value = value*10+7;sprintf(str,"%d",value);lcd_printxy(0,1,str);delay(1000);}
        if (key == KEY_OUT_2){
            lcd_printxy(0,1,"                ");
            value = value*10+8;sprintf(str,"%d",value);lcd_printxy(0,1,str);delay(1000);}
        if (key == KEY_IN_1){
            lcd_printxy(0,1,"                ");
            value = value*10+9;sprintf(str,"%d",value);lcd_printxy(0,1,str);delay(1000);}
        if (key == KEY_OUT_1){
            lcd_printxy(0,1,"                ");
            value = value*10;sprintf(str,"%d",value);lcd_printxy(0,1,str);delay(1000);}
        if (key==KEY_Open){
            lcd_printxy(0,1,"                ");
            lcd_printxy(0,1,"+");delay(1000);
            data1= value;
            value =0;
            yun = '+';
        }
        if(key == KEY_Close){
            lcd_printxy(0,1,"                ");
            lcd_printxy(0,1,"-");delay(1000);
            data1= value;
            value =0;
            yun='-';
        }
        if(key == KEY_Up){
            lcd_printxy(0,1,"                ");
            lcd_printxy(0,1,"*");delay(1000);
            data1= value;
            value =0;
            yun='*';
        }
        if(key == KEY_Down){
            lcd_printxy(0,1,"                ");
            lcd_printxy(0,1,"/");delay(1000);
            data1= value;
            value =0;
            if (value==0){
                error=1;
            }
            else {
                yun='/';
            }
        }
        if(key == KEY_TitleSet){
        lcd_printxy(0,1,"                ");
            if(error==1) {
                lcd_printxy(0,1,"Error");
                GPIO_SetBits(GPIOB, GPIO_Pin_1);
                delay(1000);
                error=0;
            }
        lcd_printxy(0,1,"                ");
        switch(yun){
        case '+':
            result = data1+value;
            break;
        case '-':
            result = data1-value;
            break;
        case '*':
            result = data1*value;
            break;
        case '/':
            result = data1/value;
            break;
        }
        sprintf(str,"%d",result);lcd_printxy(0,1,str);delay(1000);
        data1 = result;
        }
 
    }
}
 
cs


반응형

'Study > 32-bit MCUs' 카테고리의 다른 글

[Elevator(ARM)] key Matrix  (0) 2018.10.25
[Elevator(ARM)] DoorLock  (0) 2018.10.25
[Elevator(ARM)] Coretex-M4 Elevator  (0) 2018.10.18
[MTX32F407-M4] BMI Calculator  (0) 2018.10.18
[MTX32F407-M4] Coretex-M4 Stop_Watch  (0) 2018.10.18

+ Recent posts