40º corresponds to the dial rotated all the way to its left most point while 330º is the dial's right most point. The dial does not rotate 360º like the spin module.
What ports can I use it on?
1,2,7,8
Code
var degree = Magic.modules.dial.degree;
var raw = Magic.modules.dial.raw.degree;
using Magic;
public class Demo : MonoBehaviour
{
// create a reference to the module
public Magic.Modules.DialModule dial;
void Start()
{
}
void Update()
{
// access the property of the module
int dialMovement = dial.degree;
}
}