English 中文(简体)
无无线IR系统Arduino通信
原标题:Arduino communication in wireless IR system

我有两个Arduinos, 我要把它放进一个无线系统, 从房子的一间房间里的一间遥控手把IR码传送到另一间房间的固定盒子。 一个Arduino 拥有一个 IR 解码器, 解码器从手持的遥控器解码钥匙, 并用IR 发射器将它发送到另一个Arduino 。 这个系统在部分上运作良好。 当我从探测器( 到我的PC)得到代码, 并用人工( PC) 把它发送到排放的Arduino 时, 它控制着这个盒子。 但是当我试图在Arduinos 之间无线直接发送代码时, 它的工作很正常。 命令似乎没有被正确转发, 而排放的Arduino 控制着 bx 。

这里是解码的阿杜伊诺代码的模样。 "我的数字"持有4字节密钥:

myNumber.UL = results->value;
Serial.write(&myNumber.B,4);

当解码器检测 IR 模式时, 它会将以下内容张贴到序列端口, 无论是我使用发射或压缩遥控上的开关/ 关闭密钥。 有关密钥是 61A0F00F( 开关/ 关闭电源) :

     Hex Field      ASCII        

0000 FF F0 A0 61.a

解码器在将实际遥控器指向探测器时,或当我驾驶我的发射机时,或当我驾驶代号61A0F00F时,也会发出同样的响应。所以它无法辨别实际遥控器与Arduino驱动的发射机之间的差别。问题是,Arduino在系统排放端对这个输出没有正确理解。

以下是排放代码的外观:

  void loop() {
  int x = 0;
  while (x < 4) {
    if (Serial.available()) myNumber.B[x++] = Serial.read();
}    
Serial.print(myNumber.UL, HEX);

if (x==3) irsend.sendNEC(myNumber.UL, 32);  //drive IR emitter with NEC code
delay(10000);

序列输出看起来是这样的:

     HEX field                 ASCII Field

31 41 30 41 30 46 30 30 30 46 61A0F00F

当我将这个十六进制代码手动输入时, 也就是通过 Colo Terme, 颠倒( 所以 0FF0A061), 设置端框响应( 点击 ) 。 当我无线连接 Arduinos 时, 它没有 。

有谁能看到上面的通讯有什么问题吗? 十六进制字段中的数字看起来不太对, 解码器中的十六进制字段看起来像六进制, 但排放源的六进制字段看起来像ASCII? 那么发射源的六进制字段想要ASCII的号码, 却要得到十六进制? 我本以为串行. 读和串行. 写一样有效 。

这令人非常沮丧, 因为这个系统似乎几乎几乎奏效,

任何帮助/希望都将不胜感激。

问题回答

第一个免责声明:我数年来一直没有将我的Arduino编码。

乍一看, 你似乎被一个转换错误咬了。 我看到了很多从字节转换到长等的转换。 这里的关键是将事情分解到最简单的层次, 并校验每个级别的工作 。

首先,我会通过检查Sserial.write 的返回值来验证发送的字节数量。 write is 4 的确是 4 。 如果 serial. write 返回 4, 简单到像闪烁线索一样简单。 write return 4 。

在接收端,我想我会使用ReadBytesUntil ,因为这似乎旨在做你想做的事,并在一些错误检查中建立(时间间隔和只有4字节)。

我希望这能有所帮助。如果不遵循黄金规则:当怀疑时,发布更多的代码!

希望晚答复有所帮助。

排放端的输出数据是正确的。 您的情况是, 我的编号. UL = 0x61A0F00F. 当执行代码“ 序列打印( 我的数字. UL, HEX) ” 时, 打印类实际上将字符序列发送为 6 1 A 0 F 0 F. 所以在您的序列监视器中, ACII 数据是 “ 61A0F00F ”, 而相应的 HEX 数据是 “ 36 31 41 30 46 30 30 30 30 46”。 您对通过文本和二元格式传输数据感到困惑 。

您的代码问题在“ if (x==3) irsend. send NEC( My Number. UL, 32); ” 行。 收到四字节数据后, x 是 4 。 更改条件 x =3 改为 x = = = = = = = 4 就可以解决您的问题 。





相关问题
How can I program a wireless adapter?

Is it possible to program a wireless adapter attached to a computer? I need to modify how they work, not just using them to perform a task such as scanning or connecting. I have already tried the ...

Is it possible to program a Wireless Access Point? [closed]

I need to modify the way the wireless access point handle its authentication method. Is it possible to change the behaviour of wireless access point a little bit? If so, by using what library? On what ...

Ad-hoc connection disappearing

I create an ad-hoc connection between my Ubuntu 9.10 laptop (wlan0) and my iPod touch, but the connection only lasts for seconds before it is dropped. Why might this be happening? I use the following ...

Windows 7 Virtual WiFi using C#?

Windows 7 introduced Virtual WiFi which allows you to create hotspots. However I can t find any tutorials on doing it in C#. I found Virtual Router (It is open source and is written in C#) but I can t ...

Ethernet checksum checking in wireless stack

When receiving a raw ethernet packet over a wireless connection, where does the ethernet checksum get calculated, and where are errors handled? Does the wireless stack handle this, or is it handled ...

Lightweight network visualization tool

I ve been trying to find a tool for monitoring my home network. Before I go into the details, I ve looked at a ton of different software and they re either an overkill or don t have what I m looking ...

decoding 802.11 b

I have a raw grabbed data from spectrometer that was working on wifi (802.11b) channel 6. (two laptops in ad-hoc ping each other). I would like to decode this data in matlab. I see them as complex ...

Ericsson f3507g WWAN (3G Broadband) and AT commands

I have a lenovo x200t tablet with WWAN built into it. I m trying to connect to the internet using AT commands and a C# program which I am making so that the program can connect to the net and upload ...

热门标签