次のコードで。コードは個々の行を実行します。間隔 1 の線は 21.00 から 21.05 時の間で実行されます。間隔 2 の線は 22.00 から 22.05 時の間で実行されます。標準的な脈拍線は他のすべての時間枠で実行されます。
問題: コードは、間隔 1 -> 標準パルス -> 間隔 2 などからホップしません。コードが実行を開始した時間枠を実行し続けます。
誰かがこのpython時間の問題を手伝ってくれますか?
これはコードです:
from __future__ import division
from datetime import datetime, time
# Import the PCA9685 module.
import Adafruit_PCA9685
now = datetime.now()
# Initialise the PWM device using the default address
pwm = Adafruit_PCA9685.PCA9685()
# Note if you'd like more debug output you can instead run:
#pwm = PWM(0x40, debug=True)
servo_min = 300 # Min pulse length out of 4096
servo_max = 600 # Max pulse length out of 4096
def setServoPulse(channel, pulse):
pulseLength = 1000000 # 1,000,000 us per second
pulseLength /= 60 # 60 Hz
print "%d us per period" % pulseLength
pulseLength /= 4096 # 12 bits of resolution
print "%d us per bit" % pulseLength
pulse *= 1000
pulse /= pulseLength
pwm.set_pwm(channel, 0, pulse)
# Set frequency to 60hz, good for servos.
pwm.set_pwm_freq(60)
while True:
if now.time() >= time(21, 00, 00) and now.time() <= time(21, 05, 0):
print "Interval 1"
pwm.set_pwm(0, 0, servo_min)
elif now.time() >= time(22, 00, 0) and now.time() <= time(22, 05, 0):
print "Interval 2"
pwm.set_pwm(0, 0, servo_min)
else:
print "Standard pulse"
pwm.set_pwm(0, 0, servo_max)