Commit 46a92afbd746876d4f15bcc0f0a6104fba56199a
1 parent
b92623da
Affichage digits jours de la semaine
Showing
1 changed file
with
43 additions
and
1 deletions
Show diff stats
principal.txt
... | ... | @@ -165,7 +165,49 @@ afficherJour: |
165 | 165 | agir10s: |
166 | 166 | ; Initialise une lecture ADC |
167 | 167 | ; Met à jour l'état de veille (si on est en état veille) |
168 | - ; TODO | |
168 | + d1 <- 0x00; | |
169 | + d0 <- 0x00; | |
170 | + si compteur = 0 saut afficherLu | |
171 | + si compteur = 1 saut afficherMa | |
172 | + si compteur = 2 saut afficherMe | |
173 | + si compteur = 3 saut afficherJe | |
174 | + si compteur = 4 saut afficherVe | |
175 | + si compteur = 5 saut afficherSa | |
176 | + si compteur = 6 saut afficherDi | |
177 | + | |
178 | +afficherLu: | |
179 | + d3 <- 0x0E | |
180 | + d2 <- 0x1c | |
181 | + ret | |
182 | + | |
183 | +afficherMa: | |
184 | + d3 <- 0x37 | |
185 | + d2 <- 0x77 | |
186 | + ret | |
187 | + | |
188 | +afficherMe: | |
189 | + d3 <- 0x37 | |
190 | + d2 <- 0xcf | |
191 | + ret | |
192 | + | |
193 | +afficherJe: | |
194 | + d3 <- 0x3c | |
195 | + d2 <- 0xcf | |
196 | + ret | |
197 | + | |
198 | +afficherVe: | |
199 | + d3 <- 0x1c | |
200 | + d2 <- 0xcf | |
201 | + ret | |
202 | + | |
203 | +afficherSa: | |
204 | + d3 <- 0x5b | |
205 | + d2 <- 0x77 | |
206 | + ret | |
207 | + | |
208 | +afficherDi: | |
209 | + d3 <- 0xfc | |
210 | + d2 <- 0x04 | |
169 | 211 | ret |
170 | 212 | |
171 | 213 | agirHeur: | ... | ... |