User Tools

Site Tools


salzamt

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
salzamt [2013/03/12 15:48]
209.68.4.185 GPujkwoP
salzamt [2013/04/22 08:17]
zoza old revision restored
Line 1: Line 1:
-# You should use two specas after sentence-ending periodsince it makes# Emacs wrapping ​and filling work consistently.Emacsの改行処理が正しく働くそうです。うーん理にかなってるような、無茶苦茶なような・・・これはこれで自分を納得させることができるかも、と思いました。同じ結論に・・・+==== element 1: the body ==== 
 + 
 +  * a cuboid structure made of plywood and stretchable fabric  
 +{{:​img_20120907_231737.jpg?​nolink&​100|}} 
 +the process of [[linz-making-of|making of, here]] 
 + 
 +==== element 2: the mechanics ==== 
 + 
 +  * two firgelli [[http://​nodna.de/​linear-actuator_11|linear servo actuators]] to move the top of the structure 
 + 
 +  * the motors are controlled by an arduino diecimila board.  
 + 
 +==== element 3: the controls ==== 
 + 
 +  * arduino diecimila with [[extended-python-arduino-api|extended-python-arduino-prototyping-api]] firmware 
 + 
 +  * startup script [[startup-sh|startup.sh]] that runs airodump in the background and starts the python script 
 + 
 +  * python script [[motors-scanner-test-1|motor-scanner.py]] 
 + 
 +==== development ==== 
 + 
 +simple [[2linearmotors-code|arduino code]] to test the motorsmoves up and down with a delay of 3 seconds in between. 
 + 
 + 
 +the [[extended-python-arduino-api|extended-python-arduino-prototyping-api]] firmware is uploaded on an arduino board and controlls are sent to it from python.  
 + 
 +  * get the network traffic: 
 + 
 +parse a cvs from airodump, look for IVs column ​and print the values 
 +> cat salzamt1009-01.csv | awk -F ","​ '​{print $11}'​ 
 + ​http://​www.backtrack-linux.org/​forums/​showthread.php?​t=15519 
 + 
 +parse the airodump csv file, using the python csv module 
 + 
 +<code python> 
 +import csv 
 + 
 +scan=open(file.csv) 
 +scanDict=csv.DictReader(scan,​ delimiter=','​) 
 +</​code>​ 
 + 
 +from here, lookup the value for the #IVs 
 + 
 +<code python>​ 
 +for adict in scanDict: 
 +        if adict.has_key('​ # IV'​):​ 
 +            data=adict.get('​ # IV') 
 +            print data 
 +</​code> ​       
 + 
 +  * choose the last edited .csv file in the current folder; 
 + 
 +this can be done using the subprocess module: 
 + 
 +<code python>​ 
 +import subprocess 
 + 
 +listlasted=subprocess.Popen("​ls -ct1 | head -1". shell=True, stdout=subprocess.PIPE,​ stderr=subprocess.PIPE) 
 +lasted=listlasted.communicate()[0].strip() 
 +print lastedited 
 +</​code>​ 
 + 
 +  * calculate the next position of the motors based on the change in the number of packets. this number is returned by the lookup() function that reads the last edited .csv file 
 + 
 +<code python>​ 
 +newPackets=int(lookup(airodump)) 
 +packetsDiff=newPackets-packet 
 +</​code>​ 
 + 
 +based on this difference, a position value is sent to the motors 
 + 
 +<code python>​ 
 + if packetsDiff>​10:​ 
 +        newPosition=position+2 
 +        print '​should stretch',​ newPosition 
 +        linearone.write(newPosition) 
 +        time.sleep(0.3)  
 +        lineartwo.write(newPosition) 
 +        time.sleep(0.3) 
 +elif packetsDiff<​=0:​ 
 +        newPosition=position-1 
 +        print '​should shrink',​ newPosition 
 +        linearone.write(newPosition),​ lineartwo.write(newPosition) 
 +</​code>​ 
 + 
 +  * the full python script is available [[motors-scanner-test-1|here]] ​     
 + 
 +  * the whole process is finally wrapped in an automatic startup script, ​ [[startup-sh|startup.sh]] 
 +           
salzamt.txt · Last modified: 2013/04/22 08:17 by zoza