Search found 22 matches

by stephy
Sat Mar 02, 2013 1:24 pm
Forum: Standard
Topic: Help: my reef angel, stop working!!
Replies: 6
Views: 3869

Re: Help: my reef angel, stop working!!

00Warpig00 wrote:Just curious what makes that happen... I mean the fact that sometimes you can reset/reboot by pulling the VGA cable, other times you need to pull power to the relay box. Plugging the vga just continues to flash the white screen?

Nick
Yes, exactly.
by stephy
Fri Mar 01, 2013 9:19 am
Forum: Standard
Topic: Help: my reef angel, stop working!!
Replies: 6
Views: 3869

Re: Help: my reef angel, stop working!!

rimai wrote:What happens if you turn the power off and on again?

Sorry, I only powered off the controller, not the box. I powered all off and now it works again...

I was a little in panic before...sorry again...
by stephy
Fri Mar 01, 2013 9:00 am
Forum: Standard
Topic: Help: my reef angel, stop working!!
Replies: 6
Views: 3869

Help: my reef angel, stop working!!

Almost 1 hour ago I made few changes to vortech controls in my code. I uploaded the new code and all was fine for amost 10 minutes, then RA had a blank white screen flashing with green led always on and red one making 3 flash. I tried to reset it to factory, but at the end of upload appeas a message...
by stephy
Mon Dec 17, 2012 3:47 am
Forum: Apps
Topic: Client Suite 3.0
Replies: 109
Views: 165109

Re: Client Suite 3.0

All ok for almost 1 month, this mornig my pc restarts and then.... I'm using last lib version *****17/12/2012 11.32.33***** Message: There was an error parsing the query. [ Token line number = 3,Token line offset = 24,Token in error = 5 ] StackTrace: in System.Data.SqlServerCe.SqlCeCommand.ProcessRe...
by stephy
Tue Oct 23, 2012 1:21 pm
Forum: How do I code ...
Topic: Timeout error
Replies: 5
Views: 3540

Re: Timeout error

Working, thanks :-)

Any news about new version of client suite...?
by stephy
Tue Oct 23, 2012 12:40 am
Forum: How do I code ...
Topic: Timeout error
Replies: 5
Views: 3540

Timeout error

Today I updated libraries and try to upload a new code to my RA. Before I never had problems uploading. arduino log: The following features were automatically added: Watchdog Timer Version Menu The following features were detected: Dimming Signal RF Expansion Module Wifi Attachment Extra Font - Medi...
by stephy
Sat Jul 14, 2012 12:03 am
Forum: Apps
Topic: Client Suite 2.2
Replies: 203
Views: 157449

Re: Client Suite 2.2

Same problem again: I restart the pc with the client, restart the client and....this is the error log: *****14/07/2012 08:58:24***** Message: Impossibile connettersi a net.tcp://localhost:8733/Design_Time_Addresses/ReefAngelWCFListener/ReefAngelListener/. Il tentativo di connessione è durato per un ...
by stephy
Thu Jul 12, 2012 12:22 pm
Forum: Apps
Topic: Client Suite 2.2
Replies: 203
Views: 157449

Re: Client Suite 2.2

ReefAngel.AddWifi();

Now I added this, and seems to work.....
by stephy
Thu Jul 12, 2012 10:03 am
Forum: Apps
Topic: Client Suite 2.2
Replies: 203
Views: 157449

Re: Client Suite 2.2

stephy wrote:RA+
Win 7
net framework installed
#define wifi in ReefAngel_Features.h ok
wifi module updated and running

Client doesn't work: install ok, run ok, but after almost 1 minute Listener: Retrying to connect in..... to infinity.

Any suggestion?
Still having this problem......and hoping in any help....
by stephy
Sun Jul 01, 2012 4:51 pm
Forum: Apps
Topic: Client Suite 2.2
Replies: 203
Views: 157449

Re: Client Suite 2.2

RA+
Win 7
net framework installed
#define wifi in ReefAngel_Features.h ok
wifi module updated and running

Client doesn't work: install ok, run ok, but after almost 1 minute Listener: Retrying to connect in..... to infinity.

Any suggestion?
by stephy
Wed Jun 20, 2012 9:58 am
Forum: How do I code ...
Topic: RF module and "waves"
Replies: 1
Views: 1816

RF module and "waves"

Can somebody help me? I can't create waves..... This is my code for vortech: ReefAngel.RF.UseMemory = false; if ( ReefAngel.RF.Mode != Feeding_Start) { if (hour()==10) ReefAngel.RF.SetMode( ReefCrest,127,10 ); else if (hour()>=11 && hour()<13) ReefAngel.RF.SetMode( ReefCrest,191,10 ); // els...
by stephy
Mon Jun 18, 2012 10:30 pm
Forum: Standard
Topic: No graph on RA display
Replies: 2
Views: 2294

Re: No graph on RA display

rimai wrote:It will strip out the graph if you enable some expansions.
Which ones do you have?
The time and date can't be displayed in military time :(
wifi and rf. Windows client works well, portal sometimes fails (I haven't configured dyndns yet).
by stephy
Mon Jun 18, 2012 10:27 am
Forum: Standard
Topic: No graph on RA display
Replies: 2
Views: 2294

No graph on RA display

I'm using a code generate by wizard and the ra display doesn't draw any graph, while ports, Ts, pH and lights are updated. Did I forget something?

Another question, can I print on ra display date and time in format: dd/mm/yy and 18:21:04 (i.e.)?

Stephy
by stephy
Mon Jun 18, 2012 9:29 am
Forum: How do I code ...
Topic: Problem with Vortech controlling
Replies: 2
Views: 2316

Re: Problem with Vortech controlling

rimai wrote:What happens is that your code is overriding the feeding mode.
......
Fine, it works perfectly.


Thanks!
by stephy
Mon Jun 18, 2012 5:46 am
Forum: How do I code ...
Topic: Problem with Vortech controlling
Replies: 2
Views: 2316

Problem with Vortech controlling

Here is my code: #include <ReefAngel_Features.h> #include <Globals.h> #include <RA_Wifi.h> #include <Wire.h> #include <OneWire.h> #include <Time.h> #include <DS1307RTC.h> #include <InternalEEPROM.h> #include <RA_NokiaLCD.h> #include <RA_ATO.h> #include <RA_Joystick.h> #include <LED.h> #include <RA_T...
by stephy
Sun Jun 17, 2012 11:48 pm
Forum: For New Members
Topic: Moonlight always on
Replies: 3
Views: 2757

Re: Moonlight always on

If you want to turn them off, you need to do the same thing as you did for the RF. if (hour>=20 || hour<10) ReefAngel.PWM.SetActinic( MoonPhase() ); else ReefAngel.PWM.SetActinic( 0 ); Added, thanks. Also () : if (hour()>=20 || hour()<10) ReefAngel.PWM.SetActinic( MoonPhase() ); else ReefAngel.PWM....
by stephy
Sat Jun 16, 2012 9:39 am
Forum: Addons
Topic: Wifi Periodically Stops Responding
Replies: 136
Views: 80706

Re: Wifi Periodically Stops Responding

My wifi module stops responding too: I need to un-plug and plug to restart, it stops every day. V 2.32, GW configured.
by stephy
Thu Jun 14, 2012 6:13 am
Forum: For New Members
Topic: Moonlight always on
Replies: 3
Views: 2757

Moonlight always on

I'm using the code in http://forum.reefangel.com/viewtopic.php?f=15&t=1401, and I'm still testing. I placed ra dimmable moonlight in actinic pwm port, but it is always on.

Any suggestion?

Stephy
by stephy
Wed Jun 13, 2012 10:13 am
Forum: For New Members
Topic: How and where to add vortech code?
Replies: 2
Views: 2373

Re: How and where to add vortech code?

rimai wrote:Try this:
...
Thanks!! Now I know where to start! :)

Stephy
by stephy
Wed Jun 13, 2012 9:44 am
Forum: For New Members
Topic: How and where to add vortech code?
Replies: 2
Views: 2373

How and where to add vortech code?

Hello guys, I generated this code using ra wizard: #include <ReefAngel_Features.h> #include <Globals.h> #include <RA_Wifi.h> #include <Wire.h> #include <OneWire.h> #include <Time.h> #include <DS1307RTC.h> #include <InternalEEPROM.h> #include <RA_NokiaLCD.h> #include <RA_ATO.h> #include <RA_Joystick....
by stephy
Sat Jun 02, 2012 9:47 am
Forum: Ask anything here
Topic: What to buy...
Replies: 7
Views: 3694

Re: What to buy...

rimai wrote:The ORP probe is just the probe. The ORP expansion module will be available in a week or so.
If you get 2 or more expansion modules (RF and ORP in your case), you will also need the expansion hub.
Ok, tnx.

Stephy
by stephy
Sat Jun 02, 2012 1:45 am
Forum: Ask anything here
Topic: What to buy...
Replies: 7
Views: 3694

Re: What to buy...

Almost the same question: I need to check and controll lights (led plafo no dimmable for the moment), temp, ph, orp, a vortech mp10w pump, moonlight, all from remote. It's correct to order: Reef Angel Plus Controller Item # RA03 Dimming: PWM Wifi Attachment Item # Wifi RF Expansion Module Item # RAR...