我对 Raspberry 和 Arduino(尤其是与 Windows IoT 一起使用)的世界还很陌生。我的计划是,用 Arduino 读出不同的传感器(温度和压力),然后将值发送到我的 RP2,我可以在 GUI 上使用它们。
因此,读取传感器不是问题。我收到正确的值。之后我将它们发送到 I²C 总线(基于 Wire.h 库的要求)。
对于我的 RP2,我发现了两个类似的项目,我的 C# 代码就是基于这些项目。
到目前为止,一切都很好,但是当我启动两个设备时,我的 RP 上没有任何数据。我的 RP 找到了 Arduino。
为了定位问题,我使用 Wire.h 示例草图向我的 RP 发送随机值。但是还是有同样的问题,所以我猜我的C#代码有问题。我还在我的 RP 应该将值写入数组的地方设置了一个断点。但看起来,没有传入的值。
我附上了两个代码。希望有人能帮助我。我被困得很糟糕...
非常感谢!蒂莫
Arduino代码:
#include <Wire.h>
#define SLAVE_ADDRESS 0x40
byte val = 0;
byte val_2 = 100;
void setup()
{
Wire.begin(SLAVE_ADDRESS); // join i2c bus
Serial.begin(9600);
}
void loop()
{
Wire.beginTransmission(SLAVE_ADDRESS); // transmit to master device
// device address is specified in datasheet
Wire.write(val); // sends value byte
Wire.write (val_2);
// Serial.write(val);
// Serial.write(val_2);
Wire.endTransmission(); // stop transmitting
val++; // increment value
val_2++;
if(val == 64) // if reached 64th position (max)
{
val = 0; // start over from lowest value
}
if (val_2 == 164)
{
val = 100;
}
delay(500);
}
C#代码:
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
// i2c Libs
using Windows.Devices.Enumeration;
using Windows.Devices.I2c;
using System.Diagnostics;
using System.Threading;
// Die Vorlage "Leere Seite" ist unter http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409 dokumentiert.
namespace _007_Test7_I2C
{
/// <summary>
/// Eine leere Seite, die eigenständig verwendet werden kann oder auf die innerhalb eines Rahmens navigiert werden kann.
/// </summary>
public sealed partial class MainPage : Page
{
private I2cDevice Device;
private Timer periodicTimer;
public MainPage()
{
this.InitializeComponent();
initcomunica();
}
private async void initcomunica()
{
var settings = new I2cConnectionSettings(0x40); // Arduino address
settings.BusSpeed = I2cBusSpeed.StandardMode;
string aqs = I2cDevice.GetDeviceSelector("I2C1");
var dis = await DeviceInformation.FindAllAsync(aqs);
Device = await I2cDevice.FromIdAsync(dis[0].Id, settings);
periodicTimer = new Timer(this.TimerCallback, null, 0, 1000); // Create a timer
}
private void TimerCallback(object state)
{
byte[] RegAddrBuf = new byte[] { 0x40 };
byte[] ReadBuf = new byte[7];
try
{
Device.Read(ReadBuf);
// Debug.WriteLine(ReadBuf);
}
catch (Exception f)
{
Debug.WriteLine(f.Message);
}
char[] cArray = System.Text.Encoding.UTF8.GetString(ReadBuf, 0, 7).ToCharArray(); // Converte Byte to Char
String c = new String(cArray);
Debug.WriteLine(c);
// refresh the screen, note Im using a textbock @ UI
var task = this.Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal, () =>
{ Temp_2.Text = c; });
}
}
}