reef-pi :: An opensource reef tank controller based on Raspberry Pi.

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?
 
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?
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?

Are you making pulled pork?[emoji15][emoji23]
 
Because my driver is 5v pwm I am powering the terminal from the pi
IMG_0206.JPG


Tank shot while I'm at it
IMG_0207.JPG
 
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?
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
 
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.
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
Code:
lighting:
  enable: true
  jacks:
     J1:
        pins:
           - 0
           -  1
       J2:
           pins:
             - 3
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.

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)
 
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.
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.
 
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

Ranjib, It looks like I was able to create a pull though I noticed some errors afterward. Please edit as you wish.
 
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
Code:
lighting:
  enable: true
  jacks:
     J1:
        pins:
           - 0
           -  1
       J2:
           pins:
             - 3
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.

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)


So this is what my config looks like. Do i change it to what urs says.


Also is there a way to edit thru ssh? I tried but get a permission error. Ive been editing thru sudo nano

IMG_1922.JPG
 

IF YOU HAD TO TAKE A REEFING EXAM, WOULD YOU PASS?

  • Yes!

    Votes: 32 45.7%
  • Not yet, but I have one that I want to buy in mind!

    Votes: 9 12.9%
  • No.

    Votes: 26 37.1%
  • Other (please explain).

    Votes: 3 4.3%
Back
Top