Skip to content

nied/TellCore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build status

What even is this?

TellCore is a managed .NET wrapper around the TelldusCore.dll that ships with TelldusCenter.

Why would I use it?

Why use this one when there are already existing wrappers? Well a number of reasons actually:

  • TellCore uses common idioms to provide that C#-feel™.
  • As .NET developers we like to live in a garbage-collected world and avoid pointers. TellCore handles this for you. For example, all char-pointers returned by TelldusCore.dll are converted to strings and the pointer is released in the dll by the client as soon as it is converted. Once you dispose of the client, you can feel safe that no memory has been leaked.
  • It's on NuGet.

Requirements

All that's required is that TelldusCenter is installed and running on the machine you want to control.

Installation

TellCore is on NuGet.

Usage

using (var client = new TellCoreClient())
{
    int noOfDevices = client.GetNumberOfDevices();
}

About

A managed wrapper around TelldusCore

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages