-
Notifications
You must be signed in to change notification settings - Fork 0
/
LIFI.ino
208 lines (112 loc) · 3.77 KB
/
LIFI.ino
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
/*
BY TSAFACK Jordane - GOHEP Maurelle 06/03/2017
Mini projet 2016-2017
*/
#define digitalPinToInterrupt(p) ((p)==2 ? 0 : ((p)==3 ? 1 : ((p) >=18&&(p)<=21 ? 23-(p) : -1)))
#include"TimerOne.h"
#include<LiquidCrystal.h>
// déclarations des variables globales
const byte ledRouge=37,ledVerte=36 ,photoR =A0, bp1=18;
byte colonneLigne0=0 ,colonneLigne1=0 ;
int loff,lum;
int codeCarDemod=0 ;
byte compteur =0 ;
int tempsHIgh=15,tempsInterrupt=10 ;
long timer2=0,temp1=80,temp0=160 ;
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
//fin déclaration des variables globales
void setup() {
//initialisation de la carte definition des entrée /sortie,interruption,Timer1. NB: pour l'entrée analogique (A0) pas besoins de faire car par défaut est en entrée
pinMode(ledRouge,OUTPUT);
digitalWrite(ledRouge,LOW);
Serial.begin(115200) ;
lcd.begin(16,2);
lcd.clear() ;
Serial.println("Ready!!") ;
loff=analogRead(photoR) ;
pinMode(ledVerte,OUTPUT);
digitalWrite(ledVerte,HIGH) ;
Timer1.initialize() ;
Timer1.setPeriod(tempsInterrupt*1000) ;
Timer1.attachInterrupt(demoduler) ;
Timer1.start() ;
timer2=millis() ;
attachInterrupt(digitalPinToInterrupt(bp1),effacerLcd,RISING) ;
}
void loop() {
// put your main code here, to run repeatedly:
while(Serial.available()) {
digitalWrite(ledVerte,LOW) ;
char c=Serial.read() ;
lcd.setCursor(colonneLigne0,0) ;
lcd.print(c) ;
colonneLigne0=(colonneLigne0+1)%16 ;
Serial.println(c) ;
// début de la communication
moduler(c) ;
digitalWrite(ledRouge,LOW) ;
//fin de la communication
digitalWrite(ledVerte,HIGH) ;// on remet la led verte on
}
}
void moduler(char c) {
int val=c ;
Serial.print(" Code: :") ;
Serial.print(val) ;
int recuperBit=1 ;
for (int i=7;i>=0;i--){
recuperBit=1<<i ;
if( recuperBit&val){
digitalWrite(ledRouge,HIGH) ;
delay(tempsHIgh) ;
digitalWrite(ledRouge,LOW) ;
delay(temp1) ;
digitalWrite(ledRouge,HIGH) ;
delay(tempsHIgh) ;
}
else{
digitalWrite(ledRouge,HIGH) ;
delay(tempsHIgh) ;
digitalWrite(ledRouge,LOW) ;
delay(temp0) ;
digitalWrite(ledRouge,HIGH) ;
delay(tempsHIgh) ;
}
}
}
void demoduler (){
lum=analogRead(photoR) ;
//detecter si la led rouge brille
if((lum-loff)<-50 ){
long timer=millis()-timer2 ;
if(timer>=temp1-2*tempsHIgh&& timer<temp1+tempsHIgh*2){
Serial.print(" of timer :") ;
Serial.print(timer) ;
Serial.println(" 1") ;
codeCarDemod+=(1<<(7-compteur)) ;
Serial.print(" C :") ;
Serial.println(codeCarDemod) ;
compteur++ ;
}
else if(timer>=temp0-2*tempsHIgh-10&& timer<temp0+tempsHIgh*2){
Serial.print(" of timer :") ;
Serial.print(timer) ;
Serial.println(" 0") ;
compteur++ ;
}
if( compteur==8){
char c=codeCarDemod ;
Serial.println(" car recu") ;
Serial.println(c) ;
lcd.setCursor(colonneLigne1,1) ;
lcd.print(c) ;
colonneLigne1=(colonneLigne1+1)%16 ;
compteur =codeCarDemod=0 ;
}
timer2=millis();
}
}
void effacerLcd(){
lcd.clear() ;
colonneLigne1=colonneLigne0=0 ;
}