mirror of
https://github.com/kidoman/embd
synced 2024-12-22 12:50:19 +01:00
pca9685: default the freq to 490 Hz
This commit is contained in:
parent
a80a1701bf
commit
043867e1f5
@ -22,6 +22,8 @@ const (
|
|||||||
|
|
||||||
minAnalogValue = 0
|
minAnalogValue = 0
|
||||||
maxAnalogValue = 255
|
maxAnalogValue = 255
|
||||||
|
|
||||||
|
defaultFreq = 490
|
||||||
)
|
)
|
||||||
|
|
||||||
// PCA9685 represents a PCA9685 PWM generator.
|
// PCA9685 represents a PCA9685 PWM generator.
|
||||||
@ -72,6 +74,9 @@ func (d *PCA9685) setup() (err error) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if d.Freq == 0 {
|
||||||
|
d.Freq = defaultFreq
|
||||||
|
}
|
||||||
preScaleValue := byte(math.Floor(float64(clockFreq/(pwmControlPoints*d.Freq))+float64(0.5)) - 1)
|
preScaleValue := byte(math.Floor(float64(clockFreq/(pwmControlPoints*d.Freq))+float64(0.5)) - 1)
|
||||||
if d.Debug {
|
if d.Debug {
|
||||||
log.Printf("pca9685: calculated prescale value = %#02x", preScaleValue)
|
log.Printf("pca9685: calculated prescale value = %#02x", preScaleValue)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user