如何在 Windows phone 8.1 中通过蓝牙连接发送字符

How to send a char through Bluetooth connection in Windows phone 8.1

去年我用 Android 和 Arduino 做了一个项目。我可以从 arduino 发送一些字符 android 的地方。

现在我想知道在 Windows Phone 8.1 中我该怎么做?

我找到了很多关于它的东西,但不是我真正想要的,我只是想创建一个简单的按钮并向我的 Arduino 发送消息!

这是我的 C++ Arduino 代码:

const int ledVermelho = 7;
char entrada;

void setup() {
   Serial.begin(9600);
   pinMode(ledVermelho,OUTPUT); 
}

void loop() {
    entrada = Serial.read();
    if (entrada == 'a') {
        digitalWrite(ledVermelho,HIGH);
    }

    if (entrada == 'b') {
        digitalWrite(ledVermelho,LOW);
    }
}

使用 https://processing.org/ 和他的附加库 "G4P",您可以轻松创建按钮。

在此之后,您可以按照本指南连接 Arduino 和 Processing:https://learn.sparkfun.com/tutorials/connecting-arduino-to-processing .

至少,您可以使用 processingJS 为您的 windows phone 创建应用程序(只需在 google 上搜索处理 windows phone 然后您会找到很多指南)。

或者至少,您可以使用 windows phone 应用程序 "BT Terminal" 相互联系。不过也许吧,好像太不专业了。