Search Results

by gallantoss
Mon Nov 05, 2018 6:34 pm
Forum: Javascript
Topic: Phidget led 64 - Setting a channel
Replies: 1
Views: 13693

Phidget led 64 - Setting a channel

How do I set more than one channel in javascript, using the phidget led 64?

sensor = new jPhidget22.DigitalOutput();
sensor.setDeviceSerialNumber(389142);

for(let i = 0 ; i <=1 ; i++){

sensor.setChannel(i);


}

This is what I tried so far...

Thank you!
by gallantoss
Mon Oct 29, 2018 7:35 am
Forum: Javascript
Topic: LSB meanings and provenance
Replies: 1
Views: 15282

LSB meanings and provenance

I'd like to calculate the compass bearings but I have an interogation on what is LSB data and how to find it with my phidget spatial 3/3/3 basic This is an exemple I found on how to use a magnetometer to calculate the compass headings. If you could help me on the LSB thing it would really help. //--...