中级会员
- 积分
- 347
- 金钱
- 347
- 注册时间
- 2015-5-2
- 在线时间
- 23 小时
|
楼主 |
发表于 2024-2-9 19:48:54
|
显示全部楼层
我今天有空试了一下直接发射电波。貌似不成功。
我用arduino nano弄了一个外部中断检测方波的下降沿,
同样也用了一个nano作发射机。两个装置靠的很近,
未看到有信号接受到,直接短接发射端和接受端可以看到信号。
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(2, INPUT_PULLUP);
attachInterrupt(digitalPinToInterrupt(2),mystop,FALLING);
}
void loop() {
// put your main code here, to run repeatedly:
}
void mystop()
{Serial.println("data receive");
}
void setup() {
// put your setup code here, to run once:
//Serial.begin(9600);
pinMode(3, OUTPUT);;
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(3,HIGH);
delayMicroseconds(2000);
digitalWrite(3,LOW);
delayMicroseconds(2000);
//Serial.println("data send");
}
上面的那部分是接受代码,下面部分是发射代码。
求指点。
|
|