Reputation: 35
Sorry for my bad English. I currently work hard on testing WSO2 IOTS server, but I can't find the way to create any things new from scratch.
I create sample device with command: mvn archetype:generate -DarchetypeCatalog=local
, modify code and deploy it with command: mvn clean install -f device-deployer.xml
.
I known WSO2 IOTS is a collection of other component. In situation, I must create one large Project and create small component project in this, right? Please explan me how?
Upvotes: 0
Views: 109
Reputation: 166
You will be able to get an idea by following the guide [1]. This mainly walks-through using an example about the components and how /why they are used in IoT Server.
For you to get things going you can create your own device type using the maven archetype [2]. This maven archetype will give you a skeleton device which you can further extend as you need. It will be a good starting point since basic wiring for a device plugin is already been done.
[1] https://docs.wso2.com/display/IoTS100/Device+Manufacturer+Guide
[2] https://docs.wso2.com/display/IoTS100/Creating+a+New+Device+Type
Upvotes: 0