ASP.NET Core Dependency Injection error: Unable to resolve service for type while attempting to activate

To break down the error message: Unable to resolve service for type ‘WebApplication1.Data.BloggerRepository’ while attempting to activate ‘WebApplication1.Controllers.BlogController’. That is saying that your application is trying to create an instance of BlogController but it doesn’t know how to create an instance of BloggerRepository to pass into the constructor. Now look at your startup: That is saying whenever a IBloggerRepository is required, create a BloggerRepository and … Read more

Windows .NET API / Windows 7 / Bluetooth communication with Intel Curie Arduino / Genuino 101

Microsoft Bluetooth stack on Windows 7 does not support BLE. You have to use third party Bluetooth drivers in this case. BlueSoleil works good. On Windows 8 and above you can use Microsoft Bluetooth stack to work with BLE devices. However each Bluetooth drivers have own API. I am not sure about free 32feet (if it support BLE and … Read more