Object matrix – Bruce Sterling.

 

Object User Epoch Breakpoint
Artifacts Hunter-gatherers and subsistence farmers    
Machines Customers Industrial society  
Products Consumers Military-industrial complex  
Gizmos End-users “New World Disorder,” a “Terrorism-Entertainment Complex,” our own brief interregnum  
Spime Wrangler    

http://www.viridiandesign.org/notes/401-450/00422_the_spime.html

Aspect and position.

I had thought in the public arena, possibly the big end of town .

Adam suggested the big media end of town. eg. NYT building. Here we have fairfax and ACP in the CBD and News in Surry Hills . Perhaps a corporate lobby type area .

Perhaps Terminus projects would be able to broker something like this .

Python stepper control code.

#!/usr/bin/python

import serial # if you have not already done so
import sys

# 	usage :
#	python _stepper.py -1 S
#	1 step counter clockwise

#	python _stepper.py 12 R
#	12 revs clockwise

#	bitmask for revolutions
revs = 128
#	bitmask for clockwise / anticlockwise
pos = 64

def binary(n):
	l=[]
	while(n>0):
		l.append(str(n&1)); n=n>>1
	return "".join(l[::-1])
	
	
r = int(sys.argv[1])

if ( r > 0 ):
#	its positive
	r = r + pos + revs
	print "`Clockwise,",
else:
	r = r * -1
	r = r + revs
	print "`Anticlockwise,",

print abs(int(sys.argv[1])),

if ( len(sys.argv) > 2 ):
	if ( sys.argv[2] == 'S' ):
		revs = 0
		print "Steps\'"
else:
	print "Revolutions\'"


ser = serial.Serial('/dev/tty.usbserial-A1000gh8', 38400)
print "binary " + binary(r)
print "int    " + str(r)
print "char   " + chr(r)
ser.write(chr(r))

Upcoming dilemma

  1. The stepper doesn’t have enough power to drive the slide bolt.
  2. The stepper isn’t precise enough ( sometimes it misses steps ) to know where the bolt is
  3. Mounting of the hardware

Additionally, the del.icio.us feed slows down this webpage considerably.Â