Changes between Version 20 and Version 21 of Old/Robot/robothandbook


Ignore:
Timestamp:
Aug 30, 2007, 4:51:37 PM (17 years ago)
Author:
vamsi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Old/Robot/robothandbook

    v20 v21  
    1111
    1212 * C++
     13 
     14  * [wiki:robothandbook# Trilateration Classes Trilateration Classes]
    1315  * Behaviors
    1416  * Using the grid
     
    110112
    111113v3 logs all of the tests it runs in /own/logs. A python script located in that directory, ''history.py'', allows us to look through the logs and draws several relavent graphs for data analysis.
     114
     115
     116
     117============ C++ ==============
     118
     119==== Trilateration Classes ====
     120
     121Important source files:
     122
     123circles.cpp: includes the main method which utilizes other classes/methods to find the access point using trilateration
     124
     125alldata.cpp: a class that contains an array structure and other variables to hold the bulk of the data gathered before and after each trial run. 
     126
     127gnuplot_i.cpp: inlcudes the implemenation of the fine details of the plotting with GNUPLOT
     128
     129plotting.cpp: provides methods that use gnuplot_i.cpp to simplify plotting.
     130
     131iwhelper.cpp: includes methods that return signal strength and link quality
     132
     133lstools.cpp: includes methods that use the least squares algorithm to approximate a guess of the location of the AP using data from alldata.cpp
     134
     135movementtool.cpp: a class contains functions required to move the robot
     136
     137==============================
     138
     139
     140
     141