User:Mths/sdr ldr: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
No edit summary
Line 1: Line 1:
==Helmet #1==
==Helmet #1==
[[File:Helmetnumber1photo2.JPG|thumb|400px|user with helmet]]
'''helmet #1''' is a surround light to sound converting apparatus, <br>
'''helmet #1''' is a surround light to sound converting apparatus, <br>
that plays with the spatial perception of the user. 11 speakers are <br>
that plays with the spatial perception of the user. 11 speakers are <br>
Line 6: Line 5:
on each vertex of the structure is a small oscillator circuit attached <br>
on each vertex of the structure is a small oscillator circuit attached <br>
that converts with ldrs light into sound.<br>
that converts with ldrs light into sound.<br>
[http://pzwart3.wdka.hro.nl/mediawiki/images/7/77/Helmetnumber1video1.webm video]<br>
 
[[File:Helmetnumber1photo1.jpg|thumb|400px|helmet #1 on a table]]<br>
==Circuit==
==Circuit==
[[File:Helmetnumber1photo4.png|thumb|left|400px|Reverse bias Oscillator. Only a battery, one capacitor, one transistor, one lightresistor and a small speaker are necessary.]]<br>
 
[[File:Helmetnumber1photo5.jpg|thumb|400px|a circuit for one vertex]]<br>
==Code==
==Code==
Code for creation of a vertex in [http://www.openscad.org/  OPENSCAD]
Code for creation of a vertex in [http://www.openscad.org/  OPENSCAD]
Line 82: Line 79:
</source>
</source>


 
[[File:Helmetnumber1photo2.JPG|thumb|400px|user with helmet]]<br>
[[File:Helmetnumber1photo3.png|thumb|400px|3d view of a vertex]]
[[File:Helmetnumber1photo3.png|thumb|400px|3d view of a vertex]]<br>
[http://pzwart3.wdka.hro.nl/mediawiki/images/7/77/Helmetnumber1video1.webm video]<br>
[[File:Helmetnumber1photo1.jpg|thumb|400px|helmet #1 on a table]]<br>
[[File:Helmetnumber1photo4.png|thumb|left|400px|Reverse bias Oscillator. Only a battery, one capacitor, one transistor, one lightresistor and a small speaker are necessary.]]<br>
[[File:Helmetnumber1photo5.jpg|thumb|400px|a circuit for one vertex]]<br>

Revision as of 12:00, 1 July 2013

Helmet #1

helmet #1 is a surround light to sound converting apparatus,
that plays with the spatial perception of the user. 11 speakers are
mounted on a grid, with the form of a icosahedron, around the head.
on each vertex of the structure is a small oscillator circuit attached
that converts with ldrs light into sound.

Circuit

Code

Code for creation of a vertex in OPENSCAD

hoehe2 = 18;
hoehe = -8;
abstand = 10;
laengestab = 10;
wert = 200;
winkel = 58.2;
//31,8
//69.1


module test001()
{
	union() { 
		difference() {
			union() {
				cylinder(r = 20,h = 13, center = true,$fn=wert);
				rotate(winkel, [1, 0, 0])
				translate([0,hoehe,hoehe2])
					cylinder(r = 7, h = laengestab, center = true,$fn=wert);
				rotate(72, [0, 0, 1])
				rotate(winkel, [1, 0, 0])
				translate([0,hoehe,hoehe2])
					cylinder(r = 7, h = laengestab, center = true,$fn=wert);
				rotate(144, [0, 0, 1])
				rotate(winkel, [1, 0, 0])
				translate([0,hoehe,hoehe2])
					cylinder(r = 7, h = laengestab, center = true,$fn=wert);
				rotate(216, [0, 0, 1])
				rotate(winkel, [1, 0, 0])
				translate([0,hoehe,hoehe2])
					cylinder(r = 7, h = laengestab, center = true,$fn=wert);
				rotate(288, [0, 0, 1])
				rotate(winkel, [1, 0, 0])
				translate([0,hoehe,hoehe2])
					cylinder(r = 7, h = laengestab, center = true,$fn=wert);	
			}
			 union() {	
				translate([0,0,2])
				rotate(90, [0, 0, 0])
					cylinder(r = 11.1, h = 9, center = true,$fn=wert);
				rotate(winkel, [1, 0, 0])
				translate([0,hoehe,hoehe2])
					cylinder(r = 3.25, h = laengestab, center = true,$fn=wert);
				rotate(72, [0, 0, 1])
				rotate(winkel, [1, 0, 0])
				translate([0,hoehe,hoehe2])
					cylinder(r = 3.25, h = laengestab, center = true,$fn=wert);
				rotate(144, [0, 0, 1])
				rotate(winkel, [1, 0, 0])
				translate([0,hoehe,hoehe2])
					cylinder(r = 3.25, h = laengestab, center = true,$fn=wert);
				rotate(216, [0, 0, 1])
				rotate(winkel, [1, 0, 0])
				translate([0,hoehe,hoehe2])
					cylinder(r = 3.25, h = laengestab, center = true,$fn=wert);
				rotate(288, [0, 0, 1])
				rotate(winkel, [1, 0, 0])
				translate([0,hoehe,hoehe2])
					cylinder(r = 3.25, h = laengestab, center = true,$fn=wert);
			}
		}
	}
}

test001();
user with helmet


3d view of a vertex


video

helmet #1 on a table


Reverse bias Oscillator. Only a battery, one capacitor, one transistor, one lightresistor and a small speaker are necessary.


a circuit for one vertex