Skip to content

Commit

Permalink
Cleanup for Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaiede committed Aug 14, 2018
1 parent 839af1b commit 6b0613f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import PackageDescription
let package = Package(
name: "PCA9685",
dependencies: [
// This uses a fork for the time being.
.Package(url: "https://github.com/uraimo/SwiftyGPIO.git", majorVersion: 1),
],
swiftLanguageVersions: [3, 4]
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ A simple example looks like this:
let pca9685 = PCA9685(supportedBoard: .RaspberryPiPlusZero)
// This sets the frequency for all channels
// Range: 24 - 1526 Hz
pca9685.frequency = 1440 // Hz
// Can set an individual channel's on and off steps.
// Range: 0 - 4095
// Range: 0 - 4095 Steps
// Example: ~50% Duty Cycle
pca9685.setChannel(0, onStep: 0, offStep: 2048)
Expand Down

0 comments on commit 6b0613f

Please sign in to comment.