我正在尝试在其Web界面部分“升级”Raspberry Pi Smart House Tutorial (Part 2)。现在,当您打开Web interface(这个直接来自教程)时,您将滑块的默认值设置为0.是否可以以某种方式读取通道的历史记录(我知道这部分是可能的,在至少为最后100条消息)并提取每个灯的最后一个值;历史看起来像这样:
{"item": "light-living", "brightness": 6}
{"item": "light-living", "brightness": 9}
{"item": "light-porch", "brightness": 60}
{"item": "fireplace", "brightness": 4}
{"item": "light-porch", "brightness": 88}
{"item": "light-living", "brightness": 4}
{"item": "fireplace", "brightness": 7}
{"item": "light-porch", "brightness": 84}
所以,我必须为每个“项目”提取最后设定值“亮度”;在这种情况下,光线生活,光门廊和壁炉。可以这样做吗?
JavaScript用于与PubNub进行通信。
感谢您的帮助。