簡體   English   中英

用 Python 記錄降雨

[英]Logging rainfall with Python

第一篇文章,我對這個問題陷入了死胡同。

(一些背景)我有一個覆盆子 PiZero,我正在開發一個氣象站,到目前為止它記錄溫度、濕度和壓力,並將數據發送到windy.com API。 最近我添加了一個翻斗式雨量計。 這有 2 根連接到 GPIO 的電線,當桶傾斜時,它會暫時與電路競爭,本質上是按下按鈕!

這里的目標是每小時計算一次提示,然后重置。 在重置之前,將此數據發送到日志文件 + Windy API。 這是我正在努力解決的部分。

我對 python 非常擅長,但我正處於真正的作家阻塞時刻,這是我從片段中拼湊而成的一個小程序,它計算了測試技巧

/usr/bin/python3
import requests
from gpiozero import Button
import time

rain_sensor = Button(27)
bucket_size = 0.2794
count = 0

    def bucket_tipped():
    global count
    count = count + 1
    print(count * bucket_size)

def reset_rainfall():
    global count
    count = 0


#display and log results
def timed_loop():
reset_rainfall
timeout = time.monotonic() + 3600   # 1 hour from now
while True:
    if time.monotonic() > timeout:  # break if timeout time is reached
        rain_sensor.when_pressed = bucket_tipped
        time.sleep(1)          # Short sleep so loop can be interupted
        continue
print count


  # close the log file and exit nicely
 GPIO.cleanup()

看起來您在while True:循環中不斷將rain設置為0

編輯:為你的循環嘗試這樣的事情。

def timed_loop():
    rain = 0
    timeout = time.monotonic() + 3600   # 1 hour from now
    while True:
        if time.monotonic() > timeout:  # break if timeout time is reached
            # You place your code here that you want to run every hour. 
            # After that the loop restarts
            rain = 1  
            time.sleep(1)          # Short sleep so loop can be interupted
            continue

編輯3:

使用以下代碼,您可以記錄指定時間段內的按鈕按下情況。

import time

def bucket_tip_counter():
    recording_time_timeout = 3600  # Amount of seconds you want to have the timer run
    recording_time = time.monotonic() + recording_time_timeout
    button_timeout = 1  # This timeout is here so the button doesnt trigger the count more then once for each trigger
                        # You have to modify this to your needs. If the button stays activated for a few seconds you need to set the timer accordingly.
    count = 0           # Sets the counter to 0 at the start
    button = 0          # Here you need to replace the 0 with the GPIO pin that returns True if the button is pressed
    while True:         # starts the loop

        if button:         # if button gets pressed/bucket tipped
            count += 1     # up count by one
            time.sleep(button_timeout)  # wait specified timeout to make sure button isnt pressed anymore

        if time.monotonic() > recording_time:  # If the recording_time is reached the loop triggers this if condition
            print(count)   # print count
                           # Here you can also place code that you want to run when the hour is over
                           # Note that the counter wont start back up until that code is finished.

            count = 0      # set count back to 0
            recording_time = time.monotonic() + recording_time_timeout  # Set a new timer so the hour can start anew
            continue   # restart the loop

        time.sleep(1)  # small sleep to stop CPU hogging.

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM