Team Updates

Network insisting all I want to do is go right
Network insisting all I want to do is go right
mightygarlicYusof Bandar

At this point at time the project is at a failure. I spent too long trying to make my neural network work, it simply cant understand anything

mightygarlicYusof Bandar

Decided that the best way to analyse the data is to let the computer to do it for me. I have trained a neural network using the gyroscopic data. Since collecting data is so easy I have a lot of data to train the model

mightygarlicYusof Bandar
Training neural network
Training neural network
mightygarlicYusof Bandar

Phone application is now logging data to the sever. Server is written in express (JavaScript again). So far things have been slow but good, with logging I can now easily start to study the gyroscopic data.





mightygarlicYusof Bandar
Logging data to server
Logging data to server
mightygarlicYusof Bandar
Collecting motion data.
Collecting motion data.
mightygarlicYusof Bandar

Just started collecting motion data, so far really simple but exicting stuff. Found a great article to learn about alpha, beta and gamma rotation (will be refercing it a lot)


function handleOrientation(event) {

var absolute = event.absolute;

var alpha = event.alpha;

var beta = event.beta;

var gamma = event.gamma;

// Do stuff with the new orientation data

});


$window.addEventListener("deviceorientation", handleOrientation, true);



mightygarlicYusof Bandar

Development area setup (at last) too a bit to work everything out. My biggest issue is my only testing devices are ios, but I don't have a developer account or a mac ( no Xcode).

Using Ionic to develop the mobile application means that I can build an app that runs in the web bypassing the need for a developer account or Xcode ((I also love JavaScript).

Ngrok is also being used to quickly access my web app from any device on any network.

mightygarlicYusof Bandar