不好意思我是Python新手
目前在做LINE bot回傳raspberry pi溫度監測數值的作業
網路上的資源大多都教直接回傳原訊息
我的是收到user傳送來的特定字元時會偵測sensor的溫度並回傳
因為不太熟 app跟functino一直想不出來 想請各位大神指點
app.py
reply = event.message.text
if message.count('temp'):
function.temperature()
temperature = function.temperature
reply = temperature
function.py
dht = adafruit_dht.DHT(board.D17)
def temperature():
temperature = dht.temperature
print (temperature)
return temperature
======
function.py的print是為了驗證能顯示出來結果真的可以在設備上看到溫度
但是執行時有這個錯誤不知道怎麼排除
Object of type function is not JSON serializable