Interpret a beastmaker Motherboard freehang export with D3

In the Grippy App you are able to do freehangs and export those raw data from the beastmaker Motherboard in the CSV format. In this post I would like to go through the format and visualize the data with D3 in a time series diagram.

Creating a Grippy freehangExport.csv

On the following pictures you will see the Grippy freehang menu and the default settings. After connecting with the Grippy App with the Motherboard you will need to measure your current weight. Afterwards passing the freehangs and exporting the result as CSV.

Grippy freehang menu
Grippy freehang settings
Grippy freehang settings

Grippy freehang export format

The Grippy freehang export CSV format contains four columns. The first column containing the hang counter starting from 1. The second column contains the timestamp of the unix time in milliseconds. The third column contains the total weight measured in kilogram. Column four contains the bias. Here the first ten rows of an example freehang.

hang,timestamp,total,bias
1,1692544939830,5.542942327019205,4.029961420806309
1,1692544939837,9.128029566520667,3.6719497242465486
1,1692544939843,6.082269458673652,2.6121864378880613
1,1692544939881,4.5589404441763,2.092472835768749
1,1692544939883,3.645100420543894,1.7806795757879508
1,1692544939886,3.0331957198996795,1.5759406154213815
1,1692544939894,2.5960676831389966,1.4296866921664213
1,1692544939967,2.2688645675571095,1.3181409706478098
1,1692544939971,2.0125785134570915,1.230985190068791

Visualize freehang export CSV with D3

Feel free to upload your own freehang CSV. I am aware that the sensors of the board a measure force and no weight. But for the most people it might be more clear to show the related weight to the force.

Next Previous