Problem seems to have gone away, I was able to get my Arduino serial data parsed and have a couple virtual modules for the data now :-)
Several questions haven't been able to resolve:
1-I used RaiseEvent to make my data update to the modules, but now I get notification for every event. Can I disable that? I'm attaching every sensor I can find/create to the arduino, so lots of notifications ;-)
var module1 = Modules.InDomain("HomeAutomation.ArduinoBsmtUtil").WithAddress("1").Get();
Program.RaiseEvent(module1, "Sensor.Temperature", temp.ToString(), "Sensor 1");
2-I had to convert the data to Celsius before RaiseEvent, which is fine...but the line at top right of HG thinks it is Fahrenheit... how to correct that?
3-How do I add a chart to my Dashboard to show 24 hours of my data? Can I mix temperature, humidity and other data (like duty cycle of my sump pump) on one chart?
4-I ended up with some extra parameters for my module as I renamed things, how do I get rid of the old ones?
5-Is there a list of the "Features" that can be added to a module? I saw the code on how to add these, but not the list of what is available. All the online documentation seems to be different now than 6 months ago; unfortunately it seems like there is less info, less examples now. Am I looking in wrong area?
Thanks in advance!!!