Uldrendan
About
- Username
- Uldrendan
- Joined
- Visits
- 83
- Last Active
- Roles
- Member
Comments
-
Yes, works great. Nuget package still does not, but what you have sent does.
-
Update! For some reason something was accessing the characteristic that the initialization function needed, so I've torn it down and it's working. Thanks for the help.
-
Will do Eric. Do you see any reason that the code I have posted would fail otherwise? Am I making any bad calls to the Metawear API?
-
Sorry for the slow reply. Alright, built the dotnet assembly and added a reference to it. I'm still getting the same warning (metawear: could not deserialize board attributes) which is fine. But the exception I ultimately get is this: System.Invali…
-
Coming back to this after a few iterations on the creator's update, I now get the following when I attempt to call the following: IMetaWearBoard metawear = Application.GetMetaWearBoard(device); await metawear.InitializeAsync(); This seems to f…
-
@Eric So you're saying that the null reference exception is related to the fact that the access is denied to the gatt characteristic? I just wasn't seen that in the stack trace.
-
I may have resolved that by just moving the sensor closer to the receiver. But I am also getting this exception: System.NullReferenceException occurred HResult=0x80004003 Message=Object reference not set to an instance of an object. Source…
-
Ah okay fair enough, so I can safely pipe that output to somewhere else so it doesn't look so ugly? I suppose the exception that is actually crashing the app is as follows: System.InvalidOperationException occurred HResult=0x80131509 Message…
-
Let me know if you get it working as a Unity .dll, would be very interested in seeing it.
-
So far so good with our application. I found an external nuget package that let me get the UWP bluetooth functions (nuget package is called UwpDesktop) into our C# console application, and I have used Eric method to read in the .dll once I have unzi…
-
Hi afzall, I am also getting this same exception. Could you point me in the direction of the sample app you based your writeCharacteristic method on? Is the boardPtr parameter of type IntPtr?
-
Eric, thanks for the tip. We are experimenting now. Will report back when we make some progress.
-
It's possible that I am doing it incorrectly... but after I extract the .dll from the nuget package and add a reference to it, I get an error that tells me that a reference to the .dll could not be added. Is it possible that the .dll will only work…
-
To clarify I am not trying to make a uwp... I am trying to make a c# console application but I am not sure if that falls under the umbrella of a .net application. In any case I have tried both the win32 package and the winRT package and get the sam…