March 2018
Beginner to intermediate
410 pages
10h 40m
English
To begin our implementation, we create a subfolder to our project called IPSO. In it, we will put all IPSO-related classes. We begin by defining a class for the Digital Input object. It's quite small: all it does is provide a placeholder for an array of Digital Input object instances, and define the object ID:
public class DigitalInput : Lwm2mObject
{
public DigitalInput(params DigitalInputInstance[] Inputs)
: base(3200, Inputs)
{
}
}
Read now
Unlock full access