Welcome to the Cumulus Support forum.

Latest Cumulus MX V3 release 3.28.6 (build 3283) - 21 March 2024

Cumulus MX V4 beta test release 4.0.0 (build 4017) - 17 March 2024

Legacy Cumulus 1 release v1.9.4 (build 1099) - 28 November 2014 (a patch is available for 1.9.4 build 1099 that extends the date range of drop-down menus to 2030)

Download the Software (Cumulus MX / Cumulus 1 and other related items) from the Wiki

Search found 6 matches

by Siberwulf
Tue 02 Jul 2013 12:35 pm
Forum: Homebuilt
Topic: Accessing USB data in .NET
Replies: 9
Views: 3746

Re: Accessing USB data in .NET

That was exactly what it was. I added in three junk reads and it looks like it's returning the right data. :) Here's the updated method so others can see. Thanks again! private static byte[] GetLatestAddress(IDevice device) { ushort address = 0x1E; byte lowbyte = (byte)(address & 0xFF); byte hig...
by Siberwulf
Tue 02 Jul 2013 4:25 am
Forum: Homebuilt
Topic: Accessing USB data in .NET
Replies: 9
Views: 3746

Re: Accessing USB data in .NET

So this is the part where I start feeling rather... dumb. And it's ok to admit that, right? I've modified the code and for some reason my array of bytes returned is not correct. It is like this [0,0,0,0,0,19,7,1] Here's what I've got; a simple "look here, dummy" will do, if you can spare t...
by Siberwulf
Sun 23 Jun 2013 5:26 pm
Forum: Homebuilt
Topic: Accessing USB data in .NET
Replies: 9
Views: 3746

Re: Accessing USB data in .NET

You're right. I totally missed that. Geesh. Lemme get digging. :)
by Siberwulf
Sun 23 Jun 2013 4:33 pm
Forum: Homebuilt
Topic: Accessing USB data in .NET
Replies: 9
Views: 3746

Re: Accessing USB data in .NET

Not missing anything. Total brain fart on my part. :) It's working, with one small caveat. Their documentation on where the *latest* data is stored is a bit lacking, or I'm doing this completely wrong. I correctly requested data from 0x00 and it looks fine*. The first couple of bytes are what I expe...
by Siberwulf
Sat 22 Jun 2013 4:31 pm
Forum: Homebuilt
Topic: Accessing USB data in .NET
Replies: 9
Views: 3746

Re: Accessing USB data in .NET

Thanks for the info, Steve. That was super helpful. I have it connecting now and I can read all the basic data from the WS. I'm still trying to figure out how to read stuff above 0xFF, as you the real data starts at 100H, which naturally is 256. That wont' fit in a byte though without an overflow, s...
by Siberwulf
Fri 21 Jun 2013 4:10 am
Forum: Homebuilt
Topic: Accessing USB data in .NET
Replies: 9
Views: 3746

Accessing USB data in .NET

I hope this is the right place, but I'm not 100% sure. Please move it to the right place if I'm posting incorrectly. I'm working on a DIY project where I can program my sprinkler system to actually use my AW WS2080 to help modify my watering schedule. Being in the Dallas area, we're already under st...