update readme
This commit is contained in:
parent
424403e130
commit
bdcf723ae9
|
|
@ -29,6 +29,11 @@ work in progress; webxr support for xreal devices
|
||||||
- [XR Linux Driver](https://github.com/wheaney/XRLinuxDriver)
|
- [XR Linux Driver](https://github.com/wheaney/XRLinuxDriver)
|
||||||
- [OpenVR-xrealAirGlassesHMD](https://github.com/wheaney/OpenVR-xrealAirGlassesHMD)
|
- [OpenVR-xrealAirGlassesHMD](https://github.com/wheaney/OpenVR-xrealAirGlassesHMD)
|
||||||
|
|
||||||
|
### Community Resources
|
||||||
|
- [AR glasses USB protocols: the Good, the Bad and the Ugly](https://voidcomputing.hu/blog/good-bad-ugly) Void Computing AR API Write Up
|
||||||
|
- [AHRS Drift Analysis - Notebook Gist](https://gist.github.com/CGamesPlay/b3ea7740ea8715d19e89f5511491519f)
|
||||||
|
- [AHRS Drift Overview - Youtube](https://www.youtube.com/watch?v=Hvd9qVIusB0)
|
||||||
|
|
||||||
### Utilities
|
### Utilities
|
||||||
|
|
||||||
- 🪞 [Unofficial Firmware Archive Mirror](https://air.msmithdev.com/)
|
- 🪞 [Unofficial Firmware Archive Mirror](https://air.msmithdev.com/)
|
||||||
|
|
|
||||||
|
|
@ -320,7 +320,7 @@
|
||||||
// });
|
// });
|
||||||
// }
|
// }
|
||||||
|
|
||||||
function connect() {
|
window.connect = function() {
|
||||||
Common.connectDevice().then(async glasses => {
|
Common.connectDevice().then(async glasses => {
|
||||||
if (glasses) {
|
if (glasses) {
|
||||||
document.getElementById('startIMU').style.display = 'block'
|
document.getElementById('startIMU').style.display = 'block'
|
||||||
|
|
@ -337,6 +337,8 @@
|
||||||
// document.getElementById('sn').innerHTML = getSN()
|
// document.getElementById('sn').innerHTML = getSN()
|
||||||
// document.getElementById('version').innerText = '版本号' + firmwareMcu()
|
// document.getElementById('version').innerText = '版本号' + firmwareMcu()
|
||||||
setOutput('glasses : ' + glasses.toString());
|
setOutput('glasses : ' + glasses.toString());
|
||||||
|
}).catch((err) => {
|
||||||
|
setOutput('glasses : ' + err.toString());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -343,7 +343,7 @@ export default class Glasses extends EventTarget {
|
||||||
return out
|
return out
|
||||||
}).join(' ');
|
}).join(' ');
|
||||||
|
|
||||||
document.getElementById('imu').innerHTML = stringified
|
//document.getElementById('imu').innerHTML = stringified
|
||||||
|
|
||||||
// debugger;
|
// debugger;
|
||||||
if(current < stop_at){
|
if(current < stop_at){
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue