Thanks.Sorry, I should have looked. Found them
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Thanks.Sorry, I should have looked. Found them
Ok ill check back earlier in this thread.Try @aaron. I am pretty sure he has done it. I think our Australian friend has too. I seem to remember some pictures early in this thread.
It also looks like I can click the pencil to fork the glossary project and edit the file. Is that the way you want me to do this?Ranjib. I am in Reef-pi/website. It looks like I can't seem to figure it out. I can't do a pull because the glossary has not been forked. Do I need to fork, then pull, enter the additions, and commit?
Ranjib. I am in Reef-pi/website. It looks like I can't seem to figure it out. I can't do a pull because the glossary has not been forked. Do I need to fork, then pull, enter the additions, and commit?
I noticed you got ur leds running.Are you making pulled pork?[emoji15][emoji23]
Well im at a stopping point.
When looking over the led light parts i have all them.
But when trying to assemble them im having trouble.
Have anyone built these yet?
Well all i have right now is the pca9685 hooked up to the pi3. The i have my gnd and pwm hooked to my lights.What parts do you have and can you post pics of your build?
Yes. Use github UI to fork the repository into your personal github profile. This will make a copy of the entire repo. Then edit the file you want in your own repo. Once you are comfortable with the changes, commit and raise a pull request. more here: https://help.github.com/articles/about-pull-requests/It also looks like I can click the pencil to fork the glossary project and edit the file. Is that the way you want me to do this?
have you wired up the pca9685?... tutorial can be found here: https://learn.adafruit.com/adafruit-16-channel-servo-driver-with-raspberry-pi/overviewWell all i have right now is the pca9685 hooked up to the pi3. The i have my gnd and pwm hooked to my lights.
lighting:
enable: true
jacks:
J1:
pins:
- 0
- 1
J2:
pins:
- 3
Your lights require 10v signal. Dont hook up the pca9685 output to light controls yet, test the pca9685 is working as expected using reef-pi first (i.e. configure and test that its generating correct 5 v pwm).. then take the next step to hook up transistor+resistors + 10v DC supply to convert 5v pwm to 10v.Well all i have right now is the pca9685 hooked up to the pi3. The i have my gnd and pwm hooked to my lights.
Yes. Use github UI to fork the repository into your personal github profile. This will make a copy of the entire repo. Then edit the file you want in your own repo. Once you are comfortable with the changes, commit and raise a pull request. more here: https://help.github.com/articles/about-pull-requests/
if this sounds too much, email me the content, i'll update the docs over weekend
Mine is similar. Just setup as a test right now.Because my driver is 5v pwm I am powering the terminal from the pi![]()
Tank shot while I'm at it![]()
have you wired up the pca9685?... tutorial can be found here: https://learn.adafruit.com/adafruit-16-channel-servo-driver-with-raspberry-pi/overview
Once wired, declare the pwm outlets in configuration file and restart reef-pi service. Because we are in the middle of a code change (all configuration file based modifications will be moved to UI based workflow, for ease), the configuration file is in bit of flusk, currently it should be like this
Where all connectors ae represented by individual jacks, which have name and an array of pins. Jacks can support multiple pins (each pin denotes the pin number from pca9685 board). For kessil, we need dual channel(J1) 3.5 mm audio jacks, while for most other things we need single channel (J2) barrel jacks. If you are using cat5 cable or vga cable you can have more than 2 pins, thus controlling more than 2 channel using a single jack/connector.Code:lighting: enable: true jacks: J1: pins: - 0 - 1 J2: pins: - 3
Once you have declared the jacks, and restarted reef-pi, you should be able to add/remove light and associate jacks with lights using UI. You can use a multimeter to test that pwm is working (should generate 0-5 v output)

