到目前为止,我的代码将编写一个csv文件,其中包含我需要的桌面数据lights.csv。我希望它写到我本地网络上的文件夹,以便我可以从我的Windows计算机轻松访问它。我认为这是查看从多个pi编写的文件的最佳方式。这是我现在的代码。我是Python的新手,所以任何帮助都会受到赞赏:
outputFile = open('lights.csv', 'w')
for i in range(len(button_array)):
#Convert the button's time_on variable to a string and append a comma and newline.
outputFile.write(str(button_array[i].total_time_on) + ',\n')
outputFile.close()
所有这一切都告诉我按下某些按钮的时间,然后将其写入覆盆子pis桌面。我希望它能够访问我网络上的指定文件夹。