Back to project page rcdroid.
The source code is released under:
Copyright (c) 2013, Jamie Furness (jamie@jamierf.co.uk) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following...
If you think the Android project rcdroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.jamierf.rcdroid.config; /*from w w w . j av a 2s . c o m*/ import com.jamierf.maestro.api.Product; import org.codehaus.jackson.annotate.JsonProperty; public class ServoConfig { @JsonProperty private Product product = Product.MICRO6; @JsonProperty private int speedServoIndex = 0; @JsonProperty private int rotationServoIndex = 1; public Product getProduct() { return product; } public int getSpeedServoIndex() { return speedServoIndex; } public int getRotationServoIndex() { return rotationServoIndex; } }