你如何解析Arduino中的JSON数据

时间:2015-02-02 22:31:34

标签: c json arduino text-parsing arduino-yun

我想从Arduino中的File解析JSON数据,我该怎么做,我正在使用Arduino Yun。

我想知道的另一种方法是运行shell脚本从文件中取出不必要的数据,并将用逗号分解所需的数据保留为分隔但是在运行此命令时如何: Serial.println(p.runShellCommand(“more /mnt/sda1/json.txt | grep -o \”[^] * $“)); 我似乎没有在串行监视器上输出,我无法将内容保存在变量中。 请帮忙解决这个问题。

1 个答案:

答案 0 :(得分:1)

C没有内置JSON解析功能。您可以选择使用JsmnaJson(arduino JSON)之类的内容,或让数据提供商以不同的格式向您提供。