连接谷雨平台/zh

来自Microduino Wikipedia
502748957@qq.com讨论 | 贡献2018年12月17日 (一) 08:09的版本
跳转至: 导航搜索

连接谷雨平台示例


在下面的示例中,使用Core+核心控制NBIOT模块连接谷雨云平台。

所需硬件


电路搭建

将Battery+、Core+、NBIOT叠在一起。支持NBIOT的SIM卡插入卡槽

SIM卡插入卡槽


代码

#include <SoftwareSerial.h>
SoftwareSerial mySerial(4, 5); // RX, TX
void setup() {
  // Open serial communications and wait for port to open:
  Serial.begin(9600);
  while (!Serial) {
    ; // wait for serial port to connect. Needed for native USB port only
  }
  // set the data rate for the SoftwareSerial port
  mySerial.begin(9600);
}

void loop() { // run over and over
  if (mySerial.available()) {
    Serial.write(mySerial.read());
  }
  if (Serial.available()) {
    mySerial.write(Serial.read());
  }
}

将代码复制到Microduino IDE中,程序下载成功后,打开串口,下方选择NL和CR。

NBIOT SERIAL CONFIG.jpg


返回NBIOT库语法手册