Search found 17 matches
- Sun Jan 21, 2018 2:33 pm
- Forum: Standard
- Topic: Problem with the Wifi module and a weird error
- Replies: 7
- Views: 10439
Re: Problem with the Wifi module and a weird error
Awesome! That worked, the script to correct the settings got everything up and running again.
- Tue Jan 16, 2018 6:58 pm
- Forum: Standard
- Topic: Problem with the Wifi module and a weird error
- Replies: 7
- Views: 10439
Re: Problem with the Wifi module and a weird error
One thing I noticed was that the auth is set to mixed but I am trying to set it to WAP2, which in the instructions is value 4, which I used. Could that be a part of the problem? And if so what value should I use then? Really thinking there is just something wrong with the hardware at this point sinc...
- Tue Jan 16, 2018 6:55 pm
- Forum: Standard
- Topic: Problem with the Wifi module and a weird error
- Replies: 7
- Views: 10439
Re: Problem with the Wifi module and a weird error
Alright did a hard reset and started from scratch, here is everything: (I replaced my passphrase with *********** but it is in there) CMD set s p 0 AOK <4.41> set u b 57600 AOK <4.41> save Storing in config <4.41> reboot *Reboot*CMD get w SSID=roving1 Chan=0 ExtAnt=0 Join=0 Auth=OPEN Mask=0x1fff Rat...
- Fri Jan 12, 2018 4:24 am
- Forum: Standard
- Topic: Problem with the Wifi module and a weird error
- Replies: 7
- Views: 10439
Re: Problem with the Wifi module and a weird error
Here is my get e: get e wifly-GSX Ver: 4.41 Build: r1057, Jan 17 2014 10:26:29 on RN-131 SSID=WiFly-GSX-b9 Pass= Linkmon=3600 Beacon=102 Reboot=0 IF=DOWN DHCP=ON IP=0.0.0.0:2000 NM=255.255.255.0 GW=0.0.0.0 HOST=0.0.0.0:2000 PROTO=TCP, MTU=1524 FLAGS=0x7 TCPMODE=0x0 BACKUP=0.0.0.0 OPEN= CLOSE= REMOTE...
- Tue Jan 09, 2018 6:04 pm
- Forum: Standard
- Topic: Problem with the Wifi module and a weird error
- Replies: 7
- Views: 10439
Problem with the Wifi module and a weird error
So my wifi module started acting odd, not connecting or connecting intermittently so I thought I would reset it and set it back up from scratch. Tried the WiFi setup tool but whenever I tried to send the configuration it would error out and tell me to reconnect the wifi module. Resetting it via the ...
- Sun Sep 15, 2013 5:22 pm
- Forum: Addons
- Topic: Issue getting 2nd Relay to work.
- Replies: 6
- Views: 2465
Re: Issue getting 2nd Relay to work.
Thanks Rossbryant1956 that was the issue. I had the dip switches set according to the switch box, not the circuit board and they are reversed. Set them according to the circuit board and working like a charm now.
- Sun Sep 15, 2013 10:43 am
- Forum: Addons
- Topic: Issue getting 2nd Relay to work.
- Replies: 6
- Views: 2465
Re: Issue getting 2nd Relay to work.
Here we go: I2CScanner ready! starting scanning of I2C bus from 1 to 128... addr: 1 addr: 2 addr: 3 addr: 4 addr: 5 addr: 6 addr: 7 addr: 8 addr: 9 addr: A addr: B addr: C addr: D addr: E addr: F addr: 10 found! addr: 11 addr: 12 addr: 13 addr: 14 addr: 15 addr: 16 addr: 17 addr: 18 addr: 19 addr: 1...
- Sat Sep 14, 2013 9:19 am
- Forum: Addons
- Topic: Issue getting 2nd Relay to work.
- Replies: 6
- Views: 2465
Issue getting 2nd Relay to work.
So trying to getting a 2nd Relay expansion working (so three including the initial one) and it just is not functioning for me. I set the dip switches to on|off|off, which should be correct for a second relay expansion, I have the new code uploaded and on the portal and my Android app they show up bu...
- Thu Feb 28, 2013 6:18 pm
- Forum: How do I code ...
- Topic: Turning a port on for 1 minute, twice a day.
- Replies: 13
- Views: 7661
Re: Turning a port on for 1 minute, twice a day.
So got it all built and coded. And it works well, I ended up running it for 4 seconds and I may be reducing that to 3, still on the fence about it as if the food has defrosted a bit 4 seconds tosses a bit of it out of the dish. DSCN0119.JPG Here's the whole setup. I used a cheap hang on acclimation ...
- Sun Feb 24, 2013 11:12 am
- Forum: How do I code ...
- Topic: Turning a port on for 1 minute, twice a day.
- Replies: 13
- Views: 7661
Re: Turning a port on for 1 minute, twice a day.
Ok so slight problem, the pump I got is a bit more powerful than I thought it would be so a minute is WAY to long to run the pump, all the food will get flushed out of the seahorse food dish. I need to run it for something like 5-10 seconds. Right now this is the code I have: if ( ( (hour()==9) &...
- Fri Feb 22, 2013 1:00 pm
- Forum: How do I code ...
- Topic: Turning a port on for 1 minute, twice a day.
- Replies: 13
- Views: 7661
Re: Turning a port on for 1 minute, twice a day.
Thanks for all of the help everyone, I'm still building the feeder but I'll post some pics and how it works once I get it all together. The feeder is just for daily use, I've seen some folks build one into a mini freezer but I don't have room for that. Due to my work schedule I have to keep my light...
- Fri Feb 22, 2013 8:59 am
- Forum: How do I code ...
- Topic: Turning a port on for 1 minute, twice a day.
- Replies: 13
- Views: 7661
Re: Turning a port on for 1 minute, twice a day.
Ah, thank you. So next question linked to what I am trying to do, what is the command to put my Reef Angel into Feeding mode? I need that to activate also when the port does so that the food that will be flushed into seahorses feeding dish does not all blow out.
- Thu Feb 21, 2013 5:59 pm
- Forum: How do I code ...
- Topic: Turning a port on for 1 minute, twice a day.
- Replies: 13
- Views: 7661
Re: Turning a port on for 1 minute, twice a day.
Ok so how about this: if ( (hour() ==9) && (minute() ==30) || (hour() ==19) && (minute() ==30)) ReefAngel.Relay.On(Port4); else ReefAngel.Relay.Off(Port4); So this should turn the port on for a minute at 9:30am and for a minute at 7:30pm right? Once it becomes 9:31 it should turn off...
- Thu Feb 21, 2013 8:15 am
- Forum: How do I code ...
- Topic: Turning a port on for 1 minute, twice a day.
- Replies: 13
- Views: 7661
Turning a port on for 1 minute, twice a day.
Trying to setup a seahorse feeding solution that will flush some mysis shrimp into their food dish at set times during the day. I need to run a small pump for about a minute twice a day at set times. Would the below work?(copied some code from another thread and tried editing it) Or is there a bette...
- Sat Jan 26, 2013 8:23 am
- Forum: For New Members
- Topic: Vortechs and feeding mode
- Replies: 5
- Views: 4078
Re: Vortechs and feeding mode
Is the feeding mode on a Reef Angel timed at all? The feeding mode for the vortechs is 15 minutes but it just occurred to me that I don't know much about the Reef Angel feeding mode. Is it just a manual on/off setting or is it on a timer and if so how long? If it isn't on some timer is there a way t...
- Sat Jan 26, 2013 7:28 am
- Forum: For New Members
- Topic: Vortechs and feeding mode
- Replies: 5
- Views: 4078
Re: Vortechs and feeding mode
Awesome, thanks folks. Still waiting on my Wireless expansion since they're back ordered but trying to get everything else setup and ready to go.
- Sat Jan 26, 2013 6:23 am
- Forum: For New Members
- Topic: Vortechs and feeding mode
- Replies: 5
- Views: 4078
Vortechs and feeding mode
Question about the RF expansion module, when I activate feeding mode on my Reef Angel will it put my Vortech into feeding mode also or do I need to write some custom code for it?
Thanks,
Thanks,