Search found 21 matches

by ReeferRyan
Mon Oct 26, 2020 7:53 am
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

I am also a lot to blame. I need to come up with a solid solution for Catalina release. The background story is that when Catalina was released, Apple locked all 32-bit applications and the avrdude that is responsible for the upload of the code was compiled on 32-bit. Since then, Arduino has patche...
by ReeferRyan
Mon Oct 26, 2020 7:36 am
Forum: Standard
Topic: RA Star download firmware failed
Replies: 2
Views: 4417

Re: RA Star download firmware failed

Hey Curt....so you posted this a year ago, and here I am having the same exact issue after installing the code manually (with your valuable assistance). What was your fix for this? I'm working in the portal trying to make label name changes and when I click Save, the controller comes up and says &qu...
by ReeferRyan
Sun Oct 25, 2020 6:40 pm
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

After creating the "update" folder and putting the feature.txt file in it, the output of your tool NOW includes: CBTool v2.0.1 Generating Features file from Reef_Angel_Initial_Setup.ino The following features were automatically added: Watchdog Timer Version Menu The following features were...
by ReeferRyan
Sun Oct 25, 2020 4:37 pm
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

Well, both of those options / codes you posted compile just fine for me. I get no errors when I "verify". Here's the code that I used (from what you posted). So, that makes me think there is an issue with the libraries location on your computer. I'm running macos 10.15.7 and arduino 1.8.1...
by ReeferRyan
Sun Oct 25, 2020 3:49 pm
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

Can you post your current code? Sure...this is what the web wizard created for me. #include <Salinity.h> #include <ReefAngel_Features.h> #include <Globals.h> #include <RA_TS.h> #include <RA_TouchLCD.h> #include <RA_TFT.h> #include <RA_TS.h> #include <Font.h> #include <RA_Wifi.h> #include <RA_Wiznet...
by ReeferRyan
Sun Oct 25, 2020 2:54 pm
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

Does this code snippet look right? that extra [1] is not needed because you don't have 2 relay boxes. remove those references. FeedingModePortsE[1] (or whatever it is exactly) you are referencing an element of an array that doesn't exist. Those port arrays are only the size of expansion boxes. I th...
by ReeferRyan
Sun Oct 25, 2020 2:43 pm
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

Remove that blank wiring.h file you created. it's not needed at all and is probably causing problems. the libraries need to be in Documents/Arduino/libraries (full path is actually /User/username/Documents/Arduino/libraries) i can't remember if it's /users or /user on macos. I recall dealing with s...
by ReeferRyan
Sun Oct 25, 2020 2:33 pm
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

Does this code snippet look right?
by ReeferRyan
Sun Oct 25, 2020 2:14 pm
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

any changes to the libraries needs to be done with arduino closed. if not closed, just restart arduino. once restarted, make sure that you have the proper board selected (reefangel board that is). run the cb tool parser again (just to make sure). then try to compile the code. arduino is a little fi...
by ReeferRyan
Sun Oct 25, 2020 12:11 pm
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

Still getting this. /Users/rsweeney/Documents/Arduino/Reef_Angel_Initial_Setup/Reef_Angel_Initial_Setup.ino: In function 'void setup()': Reef_Angel_Initial_Setup:57:15: error: 'class ReefAngelClass' has no member named 'FeedingModePortsE'; did you mean 'FeedingModePorts'? ReefAngel.FeedingModePortsE...
by ReeferRyan
Sun Oct 25, 2020 12:08 pm
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

Did you use the dev branch of the libraries? I'm not trying to be an idiot here. I have downloaded all the libraries from the master section on GitHub, and placed them in /Arduino/libraries. Now I'm getting this: Alternatives for wiring.h: [] ResolveLibrary(wiring.h) -> candidates: [] /Users/rsween...
by ReeferRyan
Sun Oct 25, 2020 11:55 am
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

I created a blank file called wiring.h in the EthernetUtils library and verified the code again. Now I get all kinds of errors...but not related to wiring.h. In file included from /Users/rsweeney/Documents/Arduino/libraries/Salinity/Salinity.h:25:0, from /Users/rsweeney/Documents/Arduino/Reef_Angel_...
by ReeferRyan
Sun Oct 25, 2020 11:24 am
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

Did you use the dev branch of the libraries? I'm not trying to be an idiot here. I have downloaded all the libraries from the master section on GitHub, and placed them in /Arduino/libraries. Now I'm getting this: Alternatives for wiring.h: [] ResolveLibrary(wiring.h) -> candidates: [] /Users/rsween...
by ReeferRyan
Sun Oct 25, 2020 10:32 am
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

The highlighted text is formatting that the Arduino IDE does for keywords. If we add the keywords, they turn red or blue depending on how you tag them. Just a visual thing to make readability easier. Try using another code. The code you were trying may be obsolete for the RA*. That's a straight cop...
by ReeferRyan
Sun Oct 25, 2020 10:13 am
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

Since it was/is a fresh install, you need to create 2 folders inside the libraries folder and potentially 2 files. Folders: 1. ReefAngel_Features/ 2. RA_CustomLabels/ Files: 1. ReefAngel_Features/ReefAngel_Features.h 2. RA_CustomLabels/RA_CustomLabels.h I guess I should have done better with missin...
by ReeferRyan
Sun Oct 25, 2020 9:57 am
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

Still running into difficulty.
by ReeferRyan
Sun Oct 25, 2020 8:26 am
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

Figured it out. The path actually needs to be /Arduino/tools (at least in Arduino 1.8.13)
by ReeferRyan
Sun Oct 25, 2020 7:58 am
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

If you are going to use the regular arduino software, look at this topic for instructions on getting the latest arduino to work. create your code in the webwizard and then copy and paste it into arduino. save it. then compile and upload. Sent from my Pixel 2 using Tapatalk I'm to the steps where I ...
by ReeferRyan
Sun Oct 25, 2020 7:20 am
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

For one, it won't let me type in my password. Then when it comes to assigning ports on the relay expansion module, I can't name them. Safari doesn't allow me to type in the box. Chrome works though.
by ReeferRyan
Sat Oct 24, 2020 7:45 pm
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Re: Anyone programming from a Mac?

I’ll try it again tomorrow. The web wizard doesn’t work well in Safari and I opened Chrome. When I did it asked to enable an extension, but I’m not sure it was related to what I was doing. If I could use the web wizard and save the configuration, I could load it to the Arduino using the software.
by ReeferRyan
Sat Oct 24, 2020 3:27 pm
Forum: For New Members
Topic: Anyone programming from a Mac?
Replies: 35
Views: 19047

Anyone programming from a Mac?

Trying to setup my RA Star for the first time and my Mac (running Catalina) can't install the USB driver because the driver isn't compatible. Nothing is working and I'm stuck. I don't have a PC at my disposal. Only other device I have is a Chromebook.

Suggestions?