summaryrefslogtreecommitdiff
path: root/tuer-rfid/ledmatrix.c
blob: 4cfbcc8b94427489d7744a3e7b9a62bb039f02b1 (plain) (blame)
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
/*
 *  spreadspace avr utils
 *
 *
 *  Copyright (C) 2013-2014 Christian Pointner <equinox@spreadspace.org>
 *                     Othmar Gsenger <otti@wirdorange.org>
 *
 *  This file is part of spreadspace avr utils.
 *
 *  spreadspace avr utils is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  any later version.
 *
 *  spreadspace avr utils is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with spreadspace avr utils. If not, see <http://www.gnu.org/licenses/>.
 */

#include <avr/sfr_defs.h>
#include <avr/interrupt.h>

#include "ledmatrix.h"

#define LEDMATRIX_PORT PORTB
#define LEDMATRIX_DDR DDRB
#define LEDMATRIX_RED 6
#define LEDMATRIX_GREEN 7
#define LEDMATRIX_NUM_LEDS 6
#define LEDMATRIX_MASK 0x3F
#define BLINK_DELAY 3

ledmatrix_mode_t mode = off;
uint8_t moving_cnt = 0;
uint8_t wait_cnt = 0;

void ledmatrix_start_timer(void)
{
  TCCR3A = 0;                             // prescaler 1:1024, WGM = 4 (CTC)
  TCCR3B = 1<<WGM32 | 1<<CS32 | 1<<CS30;  //
  OCR3A = 1561;                           // (1+1561)*1024 = 1599488 -> ~100 ms @ 16 MHz
  TCNT3 = 0;
  TIMSK3 = 1<<OCIE3A;
}

void ledmatrix_stop_timer(void)
{
  TCCR3B = 0;
  TIMSK3 = 0;
}

void ledmatrix_off_init(void)
{
  LEDMATRIX_PORT = LEDMATRIX_MASK;
  LEDMATRIX_PORT |= 1<<LEDMATRIX_RED | 1<<LEDMATRIX_GREEN;
}


void ledmatrix_red_init(void)
{
  LEDMATRIX_PORT = LEDMATRIX_MASK | 1<<LEDMATRIX_GREEN;
  LEDMATRIX_PORT &= ~(1<<LEDMATRIX_RED);
}


void ledmatrix_red_moving_init(void)
{
  moving_cnt = 0;
  LEDMATRIX_PORT = (1<<LEDMATRIX_GREEN) | (LEDMATRIX_MASK & (1<<moving_cnt));
  ledmatrix_start_timer();
}

void ledmatrix_red_moving_handle(void)
{
  moving_cnt++;
  if(moving_cnt >= LEDMATRIX_NUM_LEDS)
    moving_cnt = 0;
  LEDMATRIX_PORT = (1<<LEDMATRIX_GREEN) | (LEDMATRIX_MASK & (1<<moving_cnt));
}


void ledmatrix_red_blink_init(void)
{
  wait_cnt = 0;
  ledmatrix_red_init();
  ledmatrix_start_timer();
}

void ledmatrix_red_blink_handle(void)
{
  if(++wait_cnt >= BLINK_DELAY) {
    LEDMATRIX_PORT ^= 1<<LEDMATRIX_RED;
    wait_cnt = 0;
  }
}


void ledmatrix_green_init(void)
{
  LEDMATRIX_PORT = LEDMATRIX_MASK | 1<<LEDMATRIX_RED;
  LEDMATRIX_PORT &= ~(1<<LEDMATRIX_GREEN);
}


void ledmatrix_green_moving_init(void)
{
  moving_cnt = 0;
  LEDMATRIX_PORT = (1<<LEDMATRIX_RED) | (LEDMATRIX_MASK & (1<<(LEDMATRIX_NUM_LEDS - moving_cnt - 1)));
  ledmatrix_start_timer();
}

void ledmatrix_green_moving_handle(void)
{
  moving_cnt++;
  if(moving_cnt >= LEDMATRIX_NUM_LEDS)
    moving_cnt = 0;
  LEDMATRIX_PORT = (1<<LEDMATRIX_RED) | (LEDMATRIX_MASK & (1<<(LEDMATRIX_NUM_LEDS - moving_cnt - 1)));
}


void ledmatrix_green_blink_init(void)
{
  wait_cnt = 0;
  ledmatrix_green_init();
  ledmatrix_start_timer();
}

void ledmatrix_green_blink_handle(void)
{
  if(++wait_cnt >= BLINK_DELAY) {
    LEDMATRIX_PORT ^= 1<<LEDMATRIX_GREEN;
    wait_cnt = 0;
  }
}


void ledmatrix_rg_moving_init(void)
{
  moving_cnt = 0;
  LEDMATRIX_PORT = (1<<LEDMATRIX_GREEN) | (LEDMATRIX_MASK & (1<<moving_cnt));
  ledmatrix_start_timer();
}

void ledmatrix_rg_moving_handle(void)
{
  moving_cnt++;
  if(moving_cnt >= 2*LEDMATRIX_NUM_LEDS)
    moving_cnt = 0;

  if(moving_cnt >= LEDMATRIX_NUM_LEDS) {
    uint8_t offset = moving_cnt - LEDMATRIX_NUM_LEDS;
    LEDMATRIX_PORT = (1<<LEDMATRIX_RED) | (LEDMATRIX_MASK & (1<<(LEDMATRIX_NUM_LEDS - offset - 1)));
  } else {
    LEDMATRIX_PORT = (1<<LEDMATRIX_GREEN) | (LEDMATRIX_MASK & (1<<moving_cnt));
  }
}


void ledmatrix_rg_blink_init(void)
{
  wait_cnt = 0;
  ledmatrix_red_init();
  ledmatrix_start_timer();
}

void ledmatrix_rg_blink_handle(void)
{
  if(++wait_cnt >= BLINK_DELAY) {
    LEDMATRIX_PORT ^= ~(LEDMATRIX_MASK);
    wait_cnt = 0;
  }
}


void ledmatrix_init(void)
{
  LEDMATRIX_DDR = 0xFF;
  LEDMATRIX_PORT = 0xFF;
}

void ledmatrix_set(ledmatrix_mode_t m)
{
  if(m == mode)
    return;

  mode = m;
  ledmatrix_stop_timer();
  switch(mode)
  {
  case off: ledmatrix_off_init(); break;
  case red: ledmatrix_red_init(); break;
  case red_moving: ledmatrix_red_moving_init(); break;
  case red_blink: ledmatrix_red_blink_init(); break;
  case green: ledmatrix_green_init(); break;
  case green_moving: ledmatrix_green_moving_init(); break;
  case green_blink: ledmatrix_green_blink_init(); break;
  case rg_moving: ledmatrix_rg_moving_init(); break;
  case rg_blink: ledmatrix_rg_blink_init(); break;
  }
}

ISR(TIMER3_COMPA_vect)
{
  switch(mode)
  {
  case red_moving: ledmatrix_red_moving_handle(); break;
  case red_blink: ledmatrix_red_blink_handle(); break;
  case green_moving: ledmatrix_green_moving_handle(); break;
  case green_blink: ledmatrix_green_blink_handle(); break;
  case rg_moving: ledmatrix_rg_moving_handle(); break;
  case rg_blink: ledmatrix_rg_blink_handle(); break;
  default: break;
  }
}