Plusea

autodesk infrastructure design suite ultimate 2015 autodesk infrastructure design suite ultimate 2018 autodesk autocad map 3d 2014
Just another WordPress weblog

+c
calendar
publications
contact
everything
in process
2023
2022
2021
2020
2019
2018
2017
2016
2015
2014
2013
2012
2011
2010
2009
2008
2007
2006
2005
2004

walks

PLAYING TOGETHER
BECOMING MATERIAL
A WEARABLE STUDIO PRACTICE
ANATOMY OF A PIN
MAKING AS A MEANS OF EXPLORING
MAKE YOUR TECH AND WEAR IT TOO
MAKE TOOLS, NOT PARTS
TRACES WITH ORIGIN
ROOM FOR SPACE
COMMISSIONS

weeds

TEACHING
WRITING
KOBAKANT
How To Get What You Want
A Kit-of-No-Parts
Tools We Want
A Wearable Studio Practice
Swatch Exchange
mi.mu + dev blog
Mastodon
Flickr
YouTube
Riot
Instructables
GitHub
Diaspora

Step 10: Callibrating and Programming (2014)

This step describes how to callibrate your ArduIMU senors (accelerometer, gyroscope and magnetometer) and save these calibrated values to the EPROM memory of the Arduino (Atmel chip). It also describes how to upload Arduino code to the ArduIMU.

Calibrating IMU Sensors and Writing to EPROM

Documentation in progress… (contact Seb for details)

Uploading Arduino Code to ArduIMU

1) Download and install the latest version of Arduino

>> http://arduino.cc/en/Main/Software

2) Download Arduino sketch that reads and sends data

Seb’s GitHub >> https://github.com/SebMadgwick/ArduIMU-Gloves

Comment in/out as required in FlexSensors.cpp:

void FlexSensors::read() {
channel[0] = analogRead(A0);
channel[1] = analogRead(A1);
channel[2] = analogRead(A2);
channel[3] = analogRead(A3);
//channel[4] = analogRead(A6);
//channel[5] = analogRead(A7);
}

3) Program the ArduIMU

– open “ArduIMU_Glove” sketch in Arduino
– connect ArduIMU to computer with FTDI cable
– select “dev/tty” from Tools –> Serial Port menu
– ArduIMU does not show up in the list of Arduino boards to select from, but I find it works to program when you select “Arduino Pro or Pro Mini (5V, 16MHz) w/ATmega 328” from Tools –> Board menu
– upload sketch


Plusea is proudly powered by WordPress