<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
		<id>https://hackerspace-ffm.de/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=LeandraChristine</id>
		<title>Hackerspace Ffm - Benutzerbeiträge [de]</title>
		<link rel="self" type="application/atom+xml" href="https://hackerspace-ffm.de/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=LeandraChristine"/>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Spezial:Beitr%C3%A4ge/LeandraChristine"/>
		<updated>2026-05-03T22:14:57Z</updated>
		<subtitle>Benutzerbeiträge</subtitle>
		<generator>MediaWiki 1.25.3</generator>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=HackFFM-Duino_Chime&amp;diff=11577</id>
		<title>HackFFM-Duino Chime</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=HackFFM-Duino_Chime&amp;diff=11577"/>
				<updated>2024-03-18T21:53:58Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: /* Arduino code (for use with SimpleSDAudio library) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Datei:Chime.jpg|360px|right|thumb|HackFFM-Duino Chime alpha version]]&lt;br /&gt;
by: [[Benutzer:DCEM|DCEM]]&lt;br /&gt;
&lt;br /&gt;
== Motivation ==&lt;br /&gt;
[[Benutzer:LeandraChristine|LeandraChristine]] needed a small solution for sound in a project. &lt;br /&gt;
Since I was designing lots of PCB’s anyway I decided to also realize this one.&lt;br /&gt;
Another requirement was fast responsiveness. The [[SimpleSDAudio]]-library from [[Benutzer:Tut|Tut]] provides just that. [[Benutzer:Tut|Tut]] helped quite a lot with the circuit design in this project.&lt;br /&gt;
&lt;br /&gt;
We did a [[Reflow Workshop]] to build plenty of them.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
The board is carrying:&lt;br /&gt;
* Atmega328&lt;br /&gt;
* MAX9098306 3.7W stereo Class D amplifier&lt;br /&gt;
* SN74LVC2G14 dual Schmitt-Trigger with its own low noise power supply&lt;br /&gt;
* microSD-Card Slot&lt;br /&gt;
* 74LVC1G53DP Analog Switch, to set the gain of the Class D amplifier (3 levels)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The controller itself is running on 3.3V (because of the SD-Card). The supply voltage is 5V.&lt;br /&gt;
&lt;br /&gt;
Choose between 8bit Stereo or 16bit mono Sound.&lt;br /&gt;
&lt;br /&gt;
Board size: 15 x 30mm(0.6 x 1.2 inches)&lt;br /&gt;
&lt;br /&gt;
8 Pins are accessible including i²C PINS&lt;br /&gt;
&lt;br /&gt;
== Connections ==&lt;br /&gt;
[[Datei:ChimeConnections.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Design Files ==&lt;br /&gt;
&lt;br /&gt;
[https://github.com/DCEM/HackFFM-Duino-Chime HackFFM-Duino-Chime on GitHub]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Arduino code (for use with SimpleSDAudio library) ==&lt;br /&gt;
&lt;br /&gt;
To make sure the code can be uploaded:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Set the Arduino IDE to - Board - Arduino Uno&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Supply the pcb with 5V (in addition to your programmer)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Your speaker for this example should be attached to +/-1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/*&lt;br /&gt;
 Simple SD Audio bare minimum example, plays file EX1.MIX from root folder of SD card.&lt;br /&gt;
 &lt;br /&gt;
 This example shows how to use the SimpleSDAudio library with Chime&lt;br /&gt;
 http://hackerspace-ffm.de/wiki/index.php?title=HackFFM-Duino_Chime&lt;br /&gt;
 &lt;br /&gt;
 See SimpleSDAudio.h or our website for more information:&lt;br /&gt;
 http://www.hackerspace-ffm.de/wiki/index.php?title=SimpleSDAudio&lt;br /&gt;
 &lt;br /&gt;
 created  27 Sep 2015 by Lutz Lisseck&lt;br /&gt;
 */&lt;br /&gt;
#include &amp;lt;SimpleSDAudio.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
/* Chime Special function block start */&lt;br /&gt;
#define CHIME_GAIN_SW  2&lt;br /&gt;
#define CHIME_GAIN_EN  A3&lt;br /&gt;
#define CHIME_SPK_EN   A1&lt;br /&gt;
#define CHIME_LED      5&lt;br /&gt;
#define CHIME_SD_DET   8&lt;br /&gt;
#define CHIME_SD_CS    4&lt;br /&gt;
/* gain 0 off, 1 quiet, 2 loud */&lt;br /&gt;
void setupChime(unsigned char gain) {&lt;br /&gt;
  pinMode(CHIME_GAIN_SW, OUTPUT);  &lt;br /&gt;
  pinMode(CHIME_GAIN_EN, OUTPUT);&lt;br /&gt;
  pinMode(CHIME_SPK_EN, OUTPUT);&lt;br /&gt;
  pinMode(CHIME_LED, OUTPUT); digitalWrite(CHIME_LED, LOW);&lt;br /&gt;
  pinMode(CHIME_SD_DET, INPUT_PULLUP);&lt;br /&gt;
  switch(gain) {&lt;br /&gt;
    case 0: // off&lt;br /&gt;
      digitalWrite(CHIME_SPK_EN, LOW);&lt;br /&gt;
      digitalWrite(CHIME_GAIN_EN, HIGH);&lt;br /&gt;
      digitalWrite(CHIME_GAIN_SW, LOW);&lt;br /&gt;
      break;&lt;br /&gt;
    case 1: // soft&lt;br /&gt;
      digitalWrite(CHIME_SPK_EN, HIGH);&lt;br /&gt;
      digitalWrite(CHIME_GAIN_EN, HIGH);&lt;br /&gt;
      digitalWrite(CHIME_GAIN_SW, LOW);&lt;br /&gt;
      break;&lt;br /&gt;
    default: // loud&lt;br /&gt;
      digitalWrite(CHIME_SPK_EN, HIGH);&lt;br /&gt;
      digitalWrite(CHIME_GAIN_EN, LOW);&lt;br /&gt;
      digitalWrite(CHIME_GAIN_SW, HIGH);&lt;br /&gt;
      break;       &lt;br /&gt;
  }&lt;br /&gt;
  SdPlay.setSDCSPin(CHIME_SD_CS);&lt;br /&gt;
}&lt;br /&gt;
/* Chime Special function block end */&lt;br /&gt;
&lt;br /&gt;
void setup()&lt;br /&gt;
{&lt;br /&gt;
  // Open serial communications and wait for port to open:&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
&lt;br /&gt;
  setupChime(2);&lt;br /&gt;
  &lt;br /&gt;
  // Using F(&amp;quot;...&amp;quot;) to avoid wasting RAM  &lt;br /&gt;
  Serial.print(F(&amp;quot;\nInitializing SD card...&amp;quot;));  &lt;br /&gt;
  &lt;br /&gt;
  if (!SdPlay.init(SSDA_MODE_FULLRATE | SSDA_MODE_STEREO | SSDA_MODE_AUTOWORKER)) {&lt;br /&gt;
    Serial.println(F(&amp;quot;initialization failed. Is FAT formated card inserted?&amp;quot;));&lt;br /&gt;
    Serial.print(F(&amp;quot;Error code: &amp;quot;));&lt;br /&gt;
    Serial.println(SdPlay.getLastError());&lt;br /&gt;
    while(1);&lt;br /&gt;
  } else {&lt;br /&gt;
   Serial.println(F(&amp;quot;Wiring is correct and a card is present.&amp;quot;)); &lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  Serial.print(F(&amp;quot;Looking for EX1.MIX... &amp;quot;));&lt;br /&gt;
  if(!SdPlay.setFile(&amp;quot;EX1.MIX&amp;quot;)) {&lt;br /&gt;
    Serial.println(F(&amp;quot; not found on card! Error code: &amp;quot;));&lt;br /&gt;
    Serial.println(SdPlay.getLastError());&lt;br /&gt;
    while(1);&lt;br /&gt;
  } else {&lt;br /&gt;
   Serial.println(F(&amp;quot;found.&amp;quot;)); &lt;br /&gt;
  }    &lt;br /&gt;
&lt;br /&gt;
  Serial.print(F(&amp;quot;Playing... &amp;quot;)); &lt;br /&gt;
  SdPlay.play();&lt;br /&gt;
  while(!SdPlay.isStopped()) {&lt;br /&gt;
    ;	// no worker needed anymore :-)&lt;br /&gt;
    delay(500);&lt;br /&gt;
    digitalWrite(CHIME_LED, !digitalRead(CHIME_LED));&lt;br /&gt;
  }&lt;br /&gt;
  Serial.println(F(&amp;quot;done.&amp;quot;));&lt;br /&gt;
  SdPlay.deInit();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop(void) {&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
Licensing CC v4.0 Share-Alike (http://creativecommons.org/licenses/by-sa/4.0/)&lt;br /&gt;
&lt;br /&gt;
I started out with the open log design. Although there is not much left of it, it was some help.&lt;br /&gt;
&lt;br /&gt;
I also used libraries from sparkfun and adafruit.&lt;br /&gt;
&lt;br /&gt;
[[Kategorie:Projekte]]&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Voidnet_Viator_Cyberdeck&amp;diff=11462</id>
		<title>Voidnet Viator Cyberdeck</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Voidnet_Viator_Cyberdeck&amp;diff=11462"/>
				<updated>2022-09-29T18:51:06Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
[[Datei:Voidnet Viator img.jpg |400px|]]&lt;br /&gt;
&lt;br /&gt;
A savage, retro-cyberpunk inspired Cyberdeck with a thrilling human interface, finished for the Hackaday Cyberdeck challenge 2022.&lt;br /&gt;
&lt;br /&gt;
The custom made high ergonomic roll-pin mouse pointer allows typing on the mechanical keyboard and mouse movement in the same hand position.&lt;br /&gt;
This interface is supported by a wide-screen touchscreen, a psp-knob used for scrolling, stereo speakers, USB Hub, a tiny status OLED, GPIO switches and LEDs, and an&lt;br /&gt;
elaborate visualization of the currently used memory.&lt;br /&gt;
To enable project building, 5V power is supplied via two banana jacks and a 8 channel signal analyzer mounted under the keyboard.&lt;br /&gt;
Highly portable with a grip handle, cable-organizing shoulder strap, a flashlight and two 18650 Lion cells the Viator is a viable companion for your next run.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Links'''&lt;br /&gt;
&lt;br /&gt;
Video: [https://clipchamp.com/watch/iuDfoU8I1nf]&lt;br /&gt;
&lt;br /&gt;
Fusion 3d-viewer: [https://a360.co/3SyB80R]&lt;br /&gt;
&lt;br /&gt;
Github: [https://github.com/LeandraChristine/voidnet_viator]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Build'''&lt;br /&gt;
&lt;br /&gt;
'''3d-Files'''&lt;br /&gt;
If you wish to build a similar device you can probably use a lot of the printed parts, while modifying others to suit your needs.&lt;br /&gt;
&lt;br /&gt;
The parts are available on github: https://github.com/LeandraChristine/voidnet_viator&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_rollmouse.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
The most time intensive device built for this project is the roll-pin mouse replacement. Electronics were all ripped from a cheap optical mouse but the sensor's used in these devices are very tuned to their purpose. You can not expect to exchange the LED easily or stray more than ~1mm from the surface area you want to detect movement on. &lt;br /&gt;
Also the whole optical system is very reliant on the right surface structure and it turned out that roughened PETG was working well. I used an 8mm shaft and combined it first with linear LM8UU bearings, but the haptics did not feel so well. I later swapped the bearings for IGUS Igildur sliding bearings and it heighened the comfort alot.&lt;br /&gt;
The casing for the chip (and optics) as well as the distance to the pin were printed more times than I can count to get it right, but the result is a mouse replacement that allows you to keep your hand in 10-finger-typing postion while moving and using a mouse!&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_right.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
The right side of the deck got a bit cramped because I wanted to include a large, hefty and fun-to-push switch. The LEDs are used to show the charge state of the battery module while the voltage output might come in handy in a future upgrade to supply different voltages from the Cyberdeck directly.&lt;br /&gt;
The only part I would change in hindsight is the usb-C loading connector since it took a lot of space and is hard to install. A lower profile option would be better.&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_inside.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
Space was very tight under the keyboard since it is actually angled forward...so the room gets very tight towards the front. For that reason I needed to configure all USB cables myself (and I wanted to keep the usb to plug and unplug easily...or for when I changed my mind during the build). The USB Hub is the most important part here since it links up the roll-pin mouse, the keyboard itself (it loops back in), the signal analyzer and a TEENSY-LC configured as a HID to take input from the PSP Knob at the left side.&lt;br /&gt;
Later on I might add a few more functions to the TEENSY with other Buttons or sensors and probably also a way to turn the signal analyzer off when it is not in use to conserve some power.&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_left.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
The left side is mainly occupied by the 4-port USB hub (and thankfully I got a relatively small footprint for that) which was a needed feature since I already occupied so much USB on the PI. Besides that the PSP stick has an intuitive spot since the scrolling happens at the side of the screen. The flashlight was a spontaneous addition. After having it on my desk to look for dropped parts during the build I just ended up making it part of the entire Deck. Surprisingly, it works quite nicely because it points the right way when you grip the deck by the handle or when you carry it on the strap.&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_topangle.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
Originally I had used a laser-acrylic part for this but it ended up not providing enough structure. The alumnium is great because it helps holding everything together with the 8mm shaft for the mouse on the other side and 3x 4mm rods on the inside we have a nice and rigid frame.&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_panel.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
The frame itself was too large for my printer so I made parts and clips. After clipping it together the clips can be melted to the frame so it becomes one piece.&lt;br /&gt;
The front panel was a bit of a modular part because I wanted to be able to assemble it outside of the actual deck. It has space for all the additional displays and then just clips into the main frame.&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_wiring.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
At the end I was quite surprised by how many wires were needed for all the switches, Leds and I2C devices but since I will probably use other I2C parts in the future, I glued some WAGO clamps to the back which hold the I2C bus accessible. I might switch out the clips for something more &amp;quot;cyber&amp;quot; looking in the future.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Scripts'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''BOM'''&lt;br /&gt;
&lt;br /&gt;
Other than the 3d printed parts (all FDM parts printed in black PETG, all Resin printed in Elegoo ABS-like clear-red) the following was used:&lt;br /&gt;
&lt;br /&gt;
'''Base'''&lt;br /&gt;
&lt;br /&gt;
- Raspberry Pi 4 (+SD card)&lt;br /&gt;
&lt;br /&gt;
- Corsair K65 RGB 60% mechanical keyboard (don't get too attached to it)&lt;br /&gt;
&lt;br /&gt;
- Waveshare Raspberry Pi 7.9 inch Capacitive LCD HDMI Display 400 x 1280 (comes with great Raspi HDMI and USB connectors)&lt;br /&gt;
&lt;br /&gt;
- Geekworm Raspberry Pi UPS, X728 V2.1 (or alternative)&lt;br /&gt;
&lt;br /&gt;
- 2x 18650 (unprotected due to the X728 spacing) Lion cells&lt;br /&gt;
&lt;br /&gt;
- 2x Goobay 4-Port USB 2.0 Hub (needs a super slim form factor to fit. I used this: https://www.berrybase.de/4-port-usb-2.0-hub-mit-0-4m-anschlusskabel-farbe-schwarz)&lt;br /&gt;
&lt;br /&gt;
- Stero USB Speaker (2 x 0,5W, I used: https://www.berrybase.de/externer-usb-mini-lautsprecher-schwarz)&lt;br /&gt;
&lt;br /&gt;
- Alumnium Angle 40mm x 20mm, cut to a length of 290mm (the 3d files include 2 drill-guides to help get the holes right)&lt;br /&gt;
&lt;br /&gt;
- 3x 4mm Brass rods ~330mm length (cut a 1m part into 3, to clamp the 3d printed parts cut a thread at the end of each rod)&lt;br /&gt;
&lt;br /&gt;
- M4 Nuts to secure the clamping shell to the brass rods&lt;br /&gt;
&lt;br /&gt;
- M2 cylinder screws of various lengths ()&lt;br /&gt;
&lt;br /&gt;
- M2.5 screws and standoffs of various lengths (for the raspi, USP and waveshare display)&lt;br /&gt;
&lt;br /&gt;
- M3 cylinder screws of various lengths ()&lt;br /&gt;
&lt;br /&gt;
- Wiring (e.g. 0.14mm), Connectors and general soldering stuff&lt;br /&gt;
&lt;br /&gt;
- Some USB and MINI-USB connectors to solder (to configure custom wires that are slim enough below the keyboard)&lt;br /&gt;
&lt;br /&gt;
- Threaded inserts / Knurled Nuts (M3) (pretty much used everywhere)&lt;br /&gt;
&lt;br /&gt;
- (optional) microSD / T-Flash to microSD extension (to get to the SD card easier)&lt;br /&gt;
&lt;br /&gt;
'''Rolling mouse'''&lt;br /&gt;
&lt;br /&gt;
- 8mm stainless steel shaft&lt;br /&gt;
&lt;br /&gt;
- 3x IGUS drylin® R Lineargleitbuchse RJUM-01 (or LM8UU, but it will not feel as nice and smooth)&lt;br /&gt;
&lt;br /&gt;
- optics, chip and bits off a cheap, wired, optical mouse (I used ISY ICM-1000, which has a A2803 optical mouse sensor: http://www.nst-ic.com/nstfileupload/productsinfo/20190703095231_293.pdf)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Additional Features'''&lt;br /&gt;
&lt;br /&gt;
- Adafruit 15x7 CharliePlex LED Matrix Display FeatherWing - Red&lt;br /&gt;
&lt;br /&gt;
- Adafruit OLED for Raspberry Pi Pico, 128x32, I2C (scratch that, it died randomly and was replaced by a Generic 0.91 Inch, White 128X32 I2C OLED)&lt;br /&gt;
&lt;br /&gt;
- AZDelivery Logic Analyzer 8 CH, 24MHz&lt;br /&gt;
&lt;br /&gt;
- 2x 4mm Banana Jacks (22mm length, one red, one black...I did not like the red I got so a 3d file for resin printing your own is included)&lt;br /&gt;
&lt;br /&gt;
- InLine 33441G USB 3.1 Adaptercable Male C to Female C (for the charging port connected to the UPS)&lt;br /&gt;
&lt;br /&gt;
- 0.28&amp;quot; mini Digital Voltmeter Display&lt;br /&gt;
&lt;br /&gt;
- (optional) 4x WAGO 221-412 2 Fach clamps (to expose the I2C Bus on the backside)&lt;br /&gt;
&lt;br /&gt;
- PSP Slim analog Controller Joystick&lt;br /&gt;
&lt;br /&gt;
- Teensy LC (to generate a HID Keyboard and Mouse, you can try a different controller here....but I had some issues with the Circuitpython ones)&lt;br /&gt;
&lt;br /&gt;
- 7x different color 5mm LEDS (and resistors matched to the GPIO output)&lt;br /&gt;
&lt;br /&gt;
- 7x LED housing for 5mm leds (I used Signal Construct 1089)&lt;br /&gt;
&lt;br /&gt;
- 4x Miniature Toggle Switch (I scavenged for these, you can also use any other switches or buttons that fit in the front panel)&lt;br /&gt;
&lt;br /&gt;
- Hefty, vandalism-safe Button with LED indicator for 10mm hole (power button, there is plenty of space reserved for this in the housing so even longer models should fit)&lt;br /&gt;
&lt;br /&gt;
- 5mm hole momentary switch (for below the screen, wired to the waveshare display's on/off switch so it can be used to conserve power)&lt;br /&gt;
&lt;br /&gt;
'''Handle'''&lt;br /&gt;
&lt;br /&gt;
- Bike Handle Grip (Diameter: ~24 mm. Length: ~ 110 mm, cut to size)&lt;br /&gt;
&lt;br /&gt;
- Aluminum Pipe 24mm OD, 20mm ID&lt;br /&gt;
&lt;br /&gt;
- M5 threaded rod ~140mm length&lt;br /&gt;
&lt;br /&gt;
- 2x M5 Ring nut (screws to the threaded rod)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Strap'''&lt;br /&gt;
&lt;br /&gt;
- 2x Tactical Belt (so you get two buckles to remove the strap completely)&lt;br /&gt;
&lt;br /&gt;
- Some more M3 Bolts &amp;amp; Nuts&lt;br /&gt;
&lt;br /&gt;
- USB or other cables you wish to carry&lt;br /&gt;
&lt;br /&gt;
- Cable ties (to attach the belt-buckles to the 4mm rods on the main case)&lt;br /&gt;
&lt;br /&gt;
'''Greeblies'''&lt;br /&gt;
&lt;br /&gt;
- 2x CPU cooler above the speaker covers&lt;br /&gt;
&lt;br /&gt;
- 1x rectangular cooler on the left side&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Experimental'''&lt;br /&gt;
&lt;br /&gt;
- SMALLRIG Ultra Slim 4K HDMI Kabel  Micro HDMI Male to Full HDMI Female 14cm (to expose the 2nd HDMI output on the back, but so far I did not get that to work nicely)&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Voidnet_Viator_Cyberdeck&amp;diff=11461</id>
		<title>Voidnet Viator Cyberdeck</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Voidnet_Viator_Cyberdeck&amp;diff=11461"/>
				<updated>2022-09-29T16:57:21Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
[[Datei:Voidnet Viator img.jpg |400px|]]&lt;br /&gt;
&lt;br /&gt;
A savage, retro-cyberpunk inspired Cyberdeck with a thrilling human interface, finished for the Hackaday Cyberdeck challenge 2022.&lt;br /&gt;
&lt;br /&gt;
The custom made high ergonomic roll-pin mouse pointer allows typing on the mechanical keyboard and mouse movement in the same hand position.&lt;br /&gt;
This interface is supported by a wide-screen touchscreen, a psp-knob used for scrolling, stereo speakers, USB Hub, a tiny status OLED, GPIO switches and LEDs, and an&lt;br /&gt;
elaborate visualization of the currently used memory.&lt;br /&gt;
To enable project building, 5V power is supplied via two banana jacks and a 8 channel signal analyzer mounted under the keyboard.&lt;br /&gt;
Highly portable with a grip handle, cable-organizing shoulder strap, a flashlight and two 18650 Lion cells the Viator is a viable companion for your next run.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Links'''&lt;br /&gt;
&lt;br /&gt;
Video:&lt;br /&gt;
&lt;br /&gt;
Fusion 3d-viewer: [https://a360.co/3SyB80R]&lt;br /&gt;
&lt;br /&gt;
Github: [https://github.com/LeandraChristine/voidnet_viator]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Build'''&lt;br /&gt;
&lt;br /&gt;
'''3d-Files'''&lt;br /&gt;
If you wish to build a similar device you can probably use a lot of the printed parts, while modifying others to suit your needs.&lt;br /&gt;
&lt;br /&gt;
The parts are available on github: https://github.com/LeandraChristine/voidnet_viator&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_rollmouse.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
The most time intensive device built for this project is the roll-pin mouse replacement. Electronics were all ripped from a cheap optical mouse but the sensor's used in these devices are very tuned to their purpose. You can not expect to exchange the LED easily or stray more than ~1mm from the surface area you want to detect movement on. &lt;br /&gt;
Also the whole optical system is very reliant on the right surface structure and it turned out that roughened PETG was working well. I used an 8mm shaft and combined it first with linear LM8UU bearings, but the haptics did not feel so well. I later swapped the bearings for IGUS Igildur sliding bearings and it heighened the comfort alot.&lt;br /&gt;
The casing for the chip (and optics) as well as the distance to the pin were printed more times than I can count to get it right, but the result is a mouse replacement that allows you to keep your hand in 10-finger-typing postion while moving and using a mouse!&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_right.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
The right side of the deck got a bit cramped because I wanted to include a large, hefty and fun-to-push switch. The LEDs are used to show the charge state of the battery module while the voltage output might come in handy in a future upgrade to supply different voltages from the Cyberdeck directly.&lt;br /&gt;
The only part I would change in hindsight is the usb-C loading connector since it took a lot of space and is hard to install. A lower profile option would be better.&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_inside.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
Space was very tight under the keyboard since it is actually angled forward...so the room gets very tight towards the front. For that reason I needed to configure all USB cables myself (and I wanted to keep the usb to plug and unplug easily...or for when I changed my mind during the build). The USB Hub is the most important part here since it links up the roll-pin mouse, the keyboard itself (it loops back in), the signal analyzer and a TEENSY-LC configured as a HID to take input from the PSP Knob at the left side.&lt;br /&gt;
Later on I might add a few more functions to the TEENSY with other Buttons or sensors and probably also a way to turn the signal analyzer off when it is not in use to conserve some power.&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_left.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
The left side is mainly occupied by the 4-port USB hub (and thankfully I got a relatively small footprint for that) which was a needed feature since I already occupied so much USB on the PI. Besides that the PSP stick has an intuitive spot since the scrolling happens at the side of the screen. The flashlight was a spontaneous addition. After having it on my desk to look for dropped parts during the build I just ended up making it part of the entire Deck. Surprisingly, it works quite nicely because it points the right way when you grip the deck by the handle or when you carry it on the strap.&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_topangle.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
Originally I had used a laser-acrylic part for this but it ended up not providing enough structure. The alumnium is great because it helps holding everything together with the 8mm shaft for the mouse on the other side and 3x 4mm rods on the inside we have a nice and rigid frame.&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_panel.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
The frame itself was too large for my printer so I made parts and clips. After clipping it together the clips can be melted to the frame so it becomes one piece.&lt;br /&gt;
The front panel was a bit of a modular part because I wanted to be able to assemble it outside of the actual deck. It has space for all the additional displays and then just clips into the main frame.&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_wiring.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
At the end I was quite surprised by how many wires were needed for all the switches, Leds and I2C devices but since I will probably use other I2C parts in the future, I glued some WAGO clamps to the back which hold the I2C bus accessible. I might switch out the clips for something more &amp;quot;cyber&amp;quot; looking in the future.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Scripts'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''BOM'''&lt;br /&gt;
&lt;br /&gt;
Other than the 3d printed parts (all FDM parts printed in black PETG, all Resin printed in Elegoo ABS-like clear-red) the following was used:&lt;br /&gt;
&lt;br /&gt;
'''Base'''&lt;br /&gt;
&lt;br /&gt;
- Raspberry Pi 4 (+SD card)&lt;br /&gt;
&lt;br /&gt;
- Corsair K65 RGB 60% mechanical keyboard (don't get too attached to it)&lt;br /&gt;
&lt;br /&gt;
- Waveshare Raspberry Pi 7.9 inch Capacitive LCD HDMI Display 400 x 1280 (comes with great Raspi HDMI and USB connectors)&lt;br /&gt;
&lt;br /&gt;
- Geekworm Raspberry Pi UPS, X728 V2.1 (or alternative)&lt;br /&gt;
&lt;br /&gt;
- 2x 18650 (unprotected due to the X728 spacing) Lion cells&lt;br /&gt;
&lt;br /&gt;
- 2x Goobay 4-Port USB 2.0 Hub (needs a super slim form factor to fit. I used this: https://www.berrybase.de/4-port-usb-2.0-hub-mit-0-4m-anschlusskabel-farbe-schwarz)&lt;br /&gt;
&lt;br /&gt;
- Stero USB Speaker (2 x 0,5W, I used: https://www.berrybase.de/externer-usb-mini-lautsprecher-schwarz)&lt;br /&gt;
&lt;br /&gt;
- Alumnium Angle 40mm x 20mm, cut to a length of 290mm (the 3d files include 2 drill-guides to help get the holes right)&lt;br /&gt;
&lt;br /&gt;
- 3x 4mm Brass rods ~330mm length (cut a 1m part into 3, to clamp the 3d printed parts cut a thread at the end of each rod)&lt;br /&gt;
&lt;br /&gt;
- M4 Nuts to secure the clamping shell to the brass rods&lt;br /&gt;
&lt;br /&gt;
- M2 cylinder screws of various lengths ()&lt;br /&gt;
&lt;br /&gt;
- M2.5 screws and standoffs of various lengths (for the raspi, USP and waveshare display)&lt;br /&gt;
&lt;br /&gt;
- M3 cylinder screws of various lengths ()&lt;br /&gt;
&lt;br /&gt;
- Wiring (e.g. 0.14mm), Connectors and general soldering stuff&lt;br /&gt;
&lt;br /&gt;
- Some USB and MINI-USB connectors to solder (to configure custom wires that are slim enough below the keyboard)&lt;br /&gt;
&lt;br /&gt;
- Threaded inserts / Knurled Nuts (M3) (pretty much used everywhere)&lt;br /&gt;
&lt;br /&gt;
- (optional) microSD / T-Flash to microSD extension (to get to the SD card easier)&lt;br /&gt;
&lt;br /&gt;
'''Rolling mouse'''&lt;br /&gt;
&lt;br /&gt;
- 8mm stainless steel shaft&lt;br /&gt;
&lt;br /&gt;
- 3x IGUS drylin® R Lineargleitbuchse RJUM-01 (or LM8UU, but it will not feel as nice and smooth)&lt;br /&gt;
&lt;br /&gt;
- optics, chip and bits off a cheap, wired, optical mouse (I used ISY ICM-1000, which has a A2803 optical mouse sensor: http://www.nst-ic.com/nstfileupload/productsinfo/20190703095231_293.pdf)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Additional Features'''&lt;br /&gt;
&lt;br /&gt;
- Adafruit 15x7 CharliePlex LED Matrix Display FeatherWing - Red&lt;br /&gt;
&lt;br /&gt;
- Adafruit OLED for Raspberry Pi Pico, 128x32, I2C (scratch that, it died randomly and was replaced by a Generic 0.91 Inch, White 128X32 I2C OLED)&lt;br /&gt;
&lt;br /&gt;
- AZDelivery Logic Analyzer 8 CH, 24MHz&lt;br /&gt;
&lt;br /&gt;
- 2x 4mm Banana Jacks (22mm length, one red, one black...I did not like the red I got so a 3d file for resin printing your own is included)&lt;br /&gt;
&lt;br /&gt;
- InLine 33441G USB 3.1 Adaptercable Male C to Female C (for the charging port connected to the UPS)&lt;br /&gt;
&lt;br /&gt;
- 0.28&amp;quot; mini Digital Voltmeter Display&lt;br /&gt;
&lt;br /&gt;
- (optional) 4x WAGO 221-412 2 Fach clamps (to expose the I2C Bus on the backside)&lt;br /&gt;
&lt;br /&gt;
- PSP Slim analog Controller Joystick&lt;br /&gt;
&lt;br /&gt;
- Teensy LC (to generate a HID Keyboard and Mouse, you can try a different controller here....but I had some issues with the Circuitpython ones)&lt;br /&gt;
&lt;br /&gt;
- 7x different color 5mm LEDS (and resistors matched to the GPIO output)&lt;br /&gt;
&lt;br /&gt;
- 7x LED housing for 5mm leds (I used Signal Construct 1089)&lt;br /&gt;
&lt;br /&gt;
- 4x Miniature Toggle Switch (I scavenged for these, you can also use any other switches or buttons that fit in the front panel)&lt;br /&gt;
&lt;br /&gt;
- Hefty, vandalism-safe Button with LED indicator for 10mm hole (power button, there is plenty of space reserved for this in the housing so even longer models should fit)&lt;br /&gt;
&lt;br /&gt;
- 5mm hole momentary switch (for below the screen, wired to the waveshare display's on/off switch so it can be used to conserve power)&lt;br /&gt;
&lt;br /&gt;
'''Handle'''&lt;br /&gt;
&lt;br /&gt;
- Bike Handle Grip (Diameter: ~24 mm. Length: ~ 110 mm, cut to size)&lt;br /&gt;
&lt;br /&gt;
- Aluminum Pipe 24mm OD, 20mm ID&lt;br /&gt;
&lt;br /&gt;
- M5 threaded rod ~140mm length&lt;br /&gt;
&lt;br /&gt;
- 2x M5 Ring nut (screws to the threaded rod)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Strap'''&lt;br /&gt;
&lt;br /&gt;
- 2x Tactical Belt (so you get two buckles to remove the strap completely)&lt;br /&gt;
&lt;br /&gt;
- Some more M3 Bolts &amp;amp; Nuts&lt;br /&gt;
&lt;br /&gt;
- USB or other cables you wish to carry&lt;br /&gt;
&lt;br /&gt;
- Cable ties (to attach the belt-buckles to the 4mm rods on the main case)&lt;br /&gt;
&lt;br /&gt;
'''Greeblies'''&lt;br /&gt;
&lt;br /&gt;
- 2x CPU cooler above the speaker covers&lt;br /&gt;
&lt;br /&gt;
- 1x rectangular cooler on the left side&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Experimental'''&lt;br /&gt;
&lt;br /&gt;
- SMALLRIG Ultra Slim 4K HDMI Kabel  Micro HDMI Male to Full HDMI Female 14cm (to expose the 2nd HDMI output on the back, but so far I did not get that to work nicely)&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Voidnet_Viator_Cyberdeck&amp;diff=11460</id>
		<title>Voidnet Viator Cyberdeck</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Voidnet_Viator_Cyberdeck&amp;diff=11460"/>
				<updated>2022-09-29T16:41:09Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
[[Datei:Voidnet Viator img.jpg |400px|]]&lt;br /&gt;
&lt;br /&gt;
A savage, retro-cyberpunk inspired Cyberdeck with a thrilling human interface, finished for the Hackaday Cyberdeck challenge 2022.&lt;br /&gt;
&lt;br /&gt;
The custom made high ergonomic roll-pin mouse pointer allows typing on the mechanical keyboard and mouse movement in the same hand position.&lt;br /&gt;
This interface is supported by a wide-screen touchscreen, a psp-knob used for scrolling, stereo speakers, USB Hub, a tiny status OLED, GPIO switches and LEDs, and an&lt;br /&gt;
elaborate visualization of the currently used memory.&lt;br /&gt;
To enable project building, 5V power is supplied via two banana jacks and a 8 channel signal analyzer mounted under the keyboard.&lt;br /&gt;
Highly portable with a grip handle, cable-organizing shoulder strap, a flashlight and two 18650 Lion cells the Viator is a viable companion for your next run.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Links'''&lt;br /&gt;
&lt;br /&gt;
Video:&lt;br /&gt;
&lt;br /&gt;
Fusion 3d-viewer: [https://a360.co/3SyB80R]&lt;br /&gt;
&lt;br /&gt;
Github: [https://github.com/LeandraChristine/voidnet_viator]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Build'''&lt;br /&gt;
&lt;br /&gt;
'''3d-Files'''&lt;br /&gt;
If you wish to build a similar device you can probably use a lot of the printed parts, while modifying others to suit your needs.&lt;br /&gt;
&lt;br /&gt;
The parts are available on github: https://github.com/LeandraChristine/voidnet_viator&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_rollmouse.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
The most time intensive device built for this project is the roll-pin mouse replacement. Electronics were all ripped from a cheap optical mouse but the sensor's used in these devices are very tuned to their purpose. You can not expect to exchange the LED easily or stray more than ~1mm from the surface area you want to detect movement on. &lt;br /&gt;
Also the whole optical system is very reliant on the right surface structure and it turned out that roughened PETG was working well. I used an 8mm shaft and combined it first with linear LM8UU bearings, but the haptics did not feel so well. I later swapped the bearings for IGUS Igildur sliding bearings and it heighened the comfort alot.&lt;br /&gt;
The casing for the chip (and optics) as well as the distance to the pin were printed more times than I can count to get it right, but the result is a mouse replacement that allows you to keep your hand in 10-finger-typing postion while moving and using a mouse!&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_right.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
The right side of the deck got a bit cramped because I wanted to include a large, hefty and fun-to-push switch. The LEDs are used to show the charge state of the battery module while the voltage output might come in handy in a future upgrade to supply different voltages from the Cyberdeck directly.&lt;br /&gt;
The only part I would change in hindsight is the usb-C loading connector since it took a lot of space and is hard to install. A lower profile option would be better.&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_inside.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
Space was very tight under the keyboard since it is actually angled forward...so the room gets very tight towards the front. For that reason I needed to configure all USB cables myself (and I wanted to keep the usb to plug and unplug easily...or for when I changed my mind during the build). The USB Hub is the most important part here since it links up the roll-pin mouse, the keyboard itself (it loops back in), the signal analyzer and a TEENSY-LC configured as a HID to take input from the PSP Knob at the left side.&lt;br /&gt;
Later on I might add a few more functions to the TEENSY with other Buttons or sensors and probably also a way to turn the signal analyzer off when it is not in use to conserve some power.&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_left.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_topangle.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_panel.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_wiring.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Scripts'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''BOM'''&lt;br /&gt;
&lt;br /&gt;
Other than the 3d printed parts (all FDM parts printed in black PETG, all Resin printed in Elegoo ABS-like clear-red) the following was used:&lt;br /&gt;
&lt;br /&gt;
'''Base'''&lt;br /&gt;
&lt;br /&gt;
- Raspberry Pi 4 (+SD card)&lt;br /&gt;
&lt;br /&gt;
- Corsair K65 RGB 60% mechanical keyboard (don't get too attached to it)&lt;br /&gt;
&lt;br /&gt;
- Waveshare Raspberry Pi 7.9 inch Capacitive LCD HDMI Display 400 x 1280 (comes with great Raspi HDMI and USB connectors)&lt;br /&gt;
&lt;br /&gt;
- Geekworm Raspberry Pi UPS, X728 V2.1 (or alternative)&lt;br /&gt;
&lt;br /&gt;
- 2x 18650 (unprotected due to the X728 spacing) Lion cells&lt;br /&gt;
&lt;br /&gt;
- 2x Goobay 4-Port USB 2.0 Hub (needs a super slim form factor to fit. I used this: https://www.berrybase.de/4-port-usb-2.0-hub-mit-0-4m-anschlusskabel-farbe-schwarz)&lt;br /&gt;
&lt;br /&gt;
- Stero USB Speaker (2 x 0,5W, I used: https://www.berrybase.de/externer-usb-mini-lautsprecher-schwarz)&lt;br /&gt;
&lt;br /&gt;
- Alumnium Angle 40mm x 20mm, cut to a length of 290mm (the 3d files include 2 drill-guides to help get the holes right)&lt;br /&gt;
&lt;br /&gt;
- 3x 4mm Brass rods ~330mm length (cut a 1m part into 3, to clamp the 3d printed parts cut a thread at the end of each rod)&lt;br /&gt;
&lt;br /&gt;
- M4 Nuts to secure the clamping shell to the brass rods&lt;br /&gt;
&lt;br /&gt;
- M2 cylinder screws of various lengths ()&lt;br /&gt;
&lt;br /&gt;
- M2.5 screws and standoffs of various lengths (for the raspi, USP and waveshare display)&lt;br /&gt;
&lt;br /&gt;
- M3 cylinder screws of various lengths ()&lt;br /&gt;
&lt;br /&gt;
- Wiring (e.g. 0.14mm), Connectors and general soldering stuff&lt;br /&gt;
&lt;br /&gt;
- Some USB and MINI-USB connectors to solder (to configure custom wires that are slim enough below the keyboard)&lt;br /&gt;
&lt;br /&gt;
- Threaded inserts / Knurled Nuts (M3) (pretty much used everywhere)&lt;br /&gt;
&lt;br /&gt;
- (optional) microSD / T-Flash to microSD extension (to get to the SD card easier)&lt;br /&gt;
&lt;br /&gt;
'''Rolling mouse'''&lt;br /&gt;
&lt;br /&gt;
- 8mm stainless steel shaft&lt;br /&gt;
&lt;br /&gt;
- 3x IGUS drylin® R Lineargleitbuchse RJUM-01 (or LM8UU, but it will not feel as nice and smooth)&lt;br /&gt;
&lt;br /&gt;
- optics, chip and bits off a cheap, wired, optical mouse (I used ISY ICM-1000, which has a A2803 optical mouse sensor: http://www.nst-ic.com/nstfileupload/productsinfo/20190703095231_293.pdf)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Additional Features'''&lt;br /&gt;
&lt;br /&gt;
- Adafruit 15x7 CharliePlex LED Matrix Display FeatherWing - Red&lt;br /&gt;
&lt;br /&gt;
- Adafruit OLED for Raspberry Pi Pico, 128x32, I2C (scratch that, it died randomly and was replaced by a Generic 0.91 Inch, White 128X32 I2C OLED)&lt;br /&gt;
&lt;br /&gt;
- AZDelivery Logic Analyzer 8 CH, 24MHz&lt;br /&gt;
&lt;br /&gt;
- 2x 4mm Banana Jacks (22mm length, one red, one black...I did not like the red I got so a 3d file for resin printing your own is included)&lt;br /&gt;
&lt;br /&gt;
- InLine 33441G USB 3.1 Adaptercable Male C to Female C (for the charging port connected to the UPS)&lt;br /&gt;
&lt;br /&gt;
- 0.28&amp;quot; mini Digital Voltmeter Display&lt;br /&gt;
&lt;br /&gt;
- (optional) 4x WAGO 221-412 2 Fach clamps (to expose the I2C Bus on the backside)&lt;br /&gt;
&lt;br /&gt;
- PSP Slim analog Controller Joystick&lt;br /&gt;
&lt;br /&gt;
- Teensy LC (to generate a HID Keyboard and Mouse, you can try a different controller here....but I had some issues with the Circuitpython ones)&lt;br /&gt;
&lt;br /&gt;
- 7x different color 5mm LEDS (and resistors matched to the GPIO output)&lt;br /&gt;
&lt;br /&gt;
- 7x LED housing for 5mm leds (I used Signal Construct 1089)&lt;br /&gt;
&lt;br /&gt;
- 4x Miniature Toggle Switch (I scavenged for these, you can also use any other switches or buttons that fit in the front panel)&lt;br /&gt;
&lt;br /&gt;
- Hefty, vandalism-safe Button with LED indicator for 10mm hole (power button, there is plenty of space reserved for this in the housing so even longer models should fit)&lt;br /&gt;
&lt;br /&gt;
- 5mm hole momentary switch (for below the screen, wired to the waveshare display's on/off switch so it can be used to conserve power)&lt;br /&gt;
&lt;br /&gt;
'''Handle'''&lt;br /&gt;
&lt;br /&gt;
- Bike Handle Grip (Diameter: ~24 mm. Length: ~ 110 mm, cut to size)&lt;br /&gt;
&lt;br /&gt;
- Aluminum Pipe 24mm OD, 20mm ID&lt;br /&gt;
&lt;br /&gt;
- M5 threaded rod ~140mm length&lt;br /&gt;
&lt;br /&gt;
- 2x M5 Ring nut (screws to the threaded rod)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Strap'''&lt;br /&gt;
&lt;br /&gt;
- 2x Tactical Belt (so you get two buckles to remove the strap completely)&lt;br /&gt;
&lt;br /&gt;
- Some more M3 Bolts &amp;amp; Nuts&lt;br /&gt;
&lt;br /&gt;
- USB or other cables you wish to carry&lt;br /&gt;
&lt;br /&gt;
- Cable ties (to attach the belt-buckles to the 4mm rods on the main case)&lt;br /&gt;
&lt;br /&gt;
'''Greeblies'''&lt;br /&gt;
&lt;br /&gt;
- 2x CPU cooler above the speaker covers&lt;br /&gt;
&lt;br /&gt;
- 1x rectangular cooler on the left side&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Experimental'''&lt;br /&gt;
&lt;br /&gt;
- SMALLRIG Ultra Slim 4K HDMI Kabel  Micro HDMI Male to Full HDMI Female 14cm (to expose the 2nd HDMI output on the back, but so far I did not get that to work nicely)&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Voidnet_Viator_Cyberdeck&amp;diff=11459</id>
		<title>Voidnet Viator Cyberdeck</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Voidnet_Viator_Cyberdeck&amp;diff=11459"/>
				<updated>2022-09-29T16:34:23Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
[[Datei:Voidnet Viator img.jpg |400px|]]&lt;br /&gt;
&lt;br /&gt;
A savage, retro-cyberpunk inspired Cyberdeck with a thrilling human interface, finished for the Hackaday Cyberdeck challenge 2022.&lt;br /&gt;
&lt;br /&gt;
The custom made high ergonomic roll-pin mouse pointer allows typing on the mechanical keyboard and mouse movement in the same hand position.&lt;br /&gt;
This interface is supported by a wide-screen touchscreen, a psp-knob used for scrolling, stereo speakers, USB Hub, a tiny status OLED, GPIO switches and LEDs, and an&lt;br /&gt;
elaborate visualization of the currently used memory.&lt;br /&gt;
To enable project building, 5V power is supplied via two banana jacks and a 8 channel signal analyzer mounted under the keyboard.&lt;br /&gt;
Highly portable with a grip handle, cable-organizing shoulder strap, a flashlight and two 18650 Lion cells the Viator is a viable companion for your next run.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Links'''&lt;br /&gt;
&lt;br /&gt;
Video:&lt;br /&gt;
&lt;br /&gt;
Fusion 3d-viewer: [https://a360.co/3SyB80R]&lt;br /&gt;
&lt;br /&gt;
Github: [https://github.com/LeandraChristine/voidnet_viator]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Build'''&lt;br /&gt;
&lt;br /&gt;
'''3d-Files'''&lt;br /&gt;
If you wish to build a similar device you can probably use a lot of the printed parts, while modifying others to suit your needs.&lt;br /&gt;
&lt;br /&gt;
The parts are available on github: https://github.com/LeandraChristine/voidnet_viator&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_rollmouse.png|300px|]]&lt;br /&gt;
The most time intensive device built for this project is the roll-pin mouse replacement. Electronics were all ripped from a cheap optical mouse but the sensor's used in these devices are very tuned to their purpose. You can not expect to exchange the LED easily or stray more than ~1mm from the surface area you want to detect movement on. &lt;br /&gt;
Also the whole optical system is very reliant on the right surface structure and it turned out that roughened PETG was working well. I used an 8mm shaft and combined it first with linear LM8UU bearings, but the haptics did not feel so well. I later swapped the bearings for IGUS Igildur sliding bearings and it heighened the comfort alot.&lt;br /&gt;
The casing for the chip (and optics) as well as the distance to the pin were printed more times than I can count to get it right, but the result is a mouse replacement that allows you to keep your hand in 10-finger-typing postion while moving and using a mouse!&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_right.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_inside.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_left.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_topangle.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_panel.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_wiring.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Scripts'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''BOM'''&lt;br /&gt;
&lt;br /&gt;
Other than the 3d printed parts (all FDM parts printed in black PETG, all Resin printed in Elegoo ABS-like clear-red) the following was used:&lt;br /&gt;
&lt;br /&gt;
'''Base'''&lt;br /&gt;
&lt;br /&gt;
- Raspberry Pi 4 (+SD card)&lt;br /&gt;
&lt;br /&gt;
- Corsair K65 RGB 60% mechanical keyboard (don't get too attached to it)&lt;br /&gt;
&lt;br /&gt;
- Waveshare Raspberry Pi 7.9 inch Capacitive LCD HDMI Display 400 x 1280 (comes with great Raspi HDMI and USB connectors)&lt;br /&gt;
&lt;br /&gt;
- Geekworm Raspberry Pi UPS, X728 V2.1 (or alternative)&lt;br /&gt;
&lt;br /&gt;
- 2x 18650 (unprotected due to the X728 spacing) Lion cells&lt;br /&gt;
&lt;br /&gt;
- 2x Goobay 4-Port USB 2.0 Hub (needs a super slim form factor to fit. I used this: https://www.berrybase.de/4-port-usb-2.0-hub-mit-0-4m-anschlusskabel-farbe-schwarz)&lt;br /&gt;
&lt;br /&gt;
- Stero USB Speaker (2 x 0,5W, I used: https://www.berrybase.de/externer-usb-mini-lautsprecher-schwarz)&lt;br /&gt;
&lt;br /&gt;
- Alumnium Angle 40mm x 20mm, cut to a length of 290mm (the 3d files include 2 drill-guides to help get the holes right)&lt;br /&gt;
&lt;br /&gt;
- 3x 4mm Brass rods ~330mm length (cut a 1m part into 3, to clamp the 3d printed parts cut a thread at the end of each rod)&lt;br /&gt;
&lt;br /&gt;
- M4 Nuts to secure the clamping shell to the brass rods&lt;br /&gt;
&lt;br /&gt;
- M2 cylinder screws of various lengths ()&lt;br /&gt;
&lt;br /&gt;
- M2.5 screws and standoffs of various lengths (for the raspi, USP and waveshare display)&lt;br /&gt;
&lt;br /&gt;
- M3 cylinder screws of various lengths ()&lt;br /&gt;
&lt;br /&gt;
- Wiring (e.g. 0.14mm), Connectors and general soldering stuff&lt;br /&gt;
&lt;br /&gt;
- Some USB and MINI-USB connectors to solder (to configure custom wires that are slim enough below the keyboard)&lt;br /&gt;
&lt;br /&gt;
- Threaded inserts / Knurled Nuts (M3) (pretty much used everywhere)&lt;br /&gt;
&lt;br /&gt;
- (optional) microSD / T-Flash to microSD extension (to get to the SD card easier)&lt;br /&gt;
&lt;br /&gt;
'''Rolling mouse'''&lt;br /&gt;
&lt;br /&gt;
- 8mm stainless steel shaft&lt;br /&gt;
&lt;br /&gt;
- 3x IGUS drylin® R Lineargleitbuchse RJUM-01 (or LM8UU, but it will not feel as nice and smooth)&lt;br /&gt;
&lt;br /&gt;
- optics, chip and bits off a cheap, wired, optical mouse (I used ISY ICM-1000, which has a A2803 optical mouse sensor: http://www.nst-ic.com/nstfileupload/productsinfo/20190703095231_293.pdf)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Additional Features'''&lt;br /&gt;
&lt;br /&gt;
- Adafruit 15x7 CharliePlex LED Matrix Display FeatherWing - Red&lt;br /&gt;
&lt;br /&gt;
- Adafruit OLED for Raspberry Pi Pico, 128x32, I2C (scratch that, it died randomly and was replaced by a Generic 0.91 Inch, White 128X32 I2C OLED)&lt;br /&gt;
&lt;br /&gt;
- AZDelivery Logic Analyzer 8 CH, 24MHz&lt;br /&gt;
&lt;br /&gt;
- 2x 4mm Banana Jacks (22mm length, one red, one black...I did not like the red I got so a 3d file for resin printing your own is included)&lt;br /&gt;
&lt;br /&gt;
- InLine 33441G USB 3.1 Adaptercable Male C to Female C (for the charging port connected to the UPS)&lt;br /&gt;
&lt;br /&gt;
- 0.28&amp;quot; mini Digital Voltmeter Display&lt;br /&gt;
&lt;br /&gt;
- (optional) 4x WAGO 221-412 2 Fach clamps (to expose the I2C Bus on the backside)&lt;br /&gt;
&lt;br /&gt;
- PSP Slim analog Controller Joystick&lt;br /&gt;
&lt;br /&gt;
- Teensy LC (to generate a HID Keyboard and Mouse, you can try a different controller here....but I had some issues with the Circuitpython ones)&lt;br /&gt;
&lt;br /&gt;
- 7x different color 5mm LEDS (and resistors matched to the GPIO output)&lt;br /&gt;
&lt;br /&gt;
- 7x LED housing for 5mm leds (I used Signal Construct 1089)&lt;br /&gt;
&lt;br /&gt;
- 4x Miniature Toggle Switch (I scavenged for these, you can also use any other switches or buttons that fit in the front panel)&lt;br /&gt;
&lt;br /&gt;
- Hefty, vandalism-safe Button with LED indicator for 10mm hole (power button, there is plenty of space reserved for this in the housing so even longer models should fit)&lt;br /&gt;
&lt;br /&gt;
- 5mm hole momentary switch (for below the screen, wired to the waveshare display's on/off switch so it can be used to conserve power)&lt;br /&gt;
&lt;br /&gt;
'''Handle'''&lt;br /&gt;
&lt;br /&gt;
- Bike Handle Grip (Diameter: ~24 mm. Length: ~ 110 mm, cut to size)&lt;br /&gt;
&lt;br /&gt;
- Aluminum Pipe 24mm OD, 20mm ID&lt;br /&gt;
&lt;br /&gt;
- M5 threaded rod ~140mm length&lt;br /&gt;
&lt;br /&gt;
- 2x M5 Ring nut (screws to the threaded rod)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Strap'''&lt;br /&gt;
&lt;br /&gt;
- 2x Tactical Belt (so you get two buckles to remove the strap completely)&lt;br /&gt;
&lt;br /&gt;
- Some more M3 Bolts &amp;amp; Nuts&lt;br /&gt;
&lt;br /&gt;
- USB or other cables you wish to carry&lt;br /&gt;
&lt;br /&gt;
- Cable ties (to attach the belt-buckles to the 4mm rods on the main case)&lt;br /&gt;
&lt;br /&gt;
'''Greeblies'''&lt;br /&gt;
&lt;br /&gt;
- 2x CPU cooler above the speaker covers&lt;br /&gt;
&lt;br /&gt;
- 1x rectangular cooler on the left side&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Experimental'''&lt;br /&gt;
&lt;br /&gt;
- SMALLRIG Ultra Slim 4K HDMI Kabel  Micro HDMI Male to Full HDMI Female 14cm (to expose the 2nd HDMI output on the back, but so far I did not get that to work nicely)&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Projekte&amp;diff=11458</id>
		<title>Projekte</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Projekte&amp;diff=11458"/>
				<updated>2022-09-29T16:17:03Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: /* Laufende Projekte */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Info Sammlung ==&lt;br /&gt;
* [[Fern Bild Sprechanlage Einrichten]]&lt;br /&gt;
* [[Face Shield]]&lt;br /&gt;
* [[OpenCV mit Python]]&lt;br /&gt;
* [[Python Grundlagen|Grundlagen zur Benutzung von Python]]&lt;br /&gt;
* [[ESP32_with_OLED|ESP32 Module mit integriertem OLED Display]]&lt;br /&gt;
* [[Heltec Wifi LoRa 32]]&lt;br /&gt;
* [[DataTransferWebRaspberryArduino]]&lt;br /&gt;
* [[RaspberryGPIOSerial]]&lt;br /&gt;
* [[Kameramodule fuer uC]]&lt;br /&gt;
* [[Bluetooth-Modul HC-05]]&lt;br /&gt;
* [[Arduino / C Programmierung Grundlagen]]&lt;br /&gt;
* [[COVID-19 Nukleotidsequenz anschauen]]&lt;br /&gt;
&lt;br /&gt;
== Geplante Gemeinschaftsprojekte ==&lt;br /&gt;
&lt;br /&gt;
* [[DIY NFC-/PWA-Schachspiel (interaktive Holzfiguren mit  NFC-Chips und WebApp)]]&lt;br /&gt;
* [[Corona Konzept]]&lt;br /&gt;
* [[Space Zugangssysem]]&lt;br /&gt;
* [[NachtderMuseen2020|Alien Space Escape auf der Nacht der Museen]]&lt;br /&gt;
* Lötstation&lt;br /&gt;
* 5 Achsenfräse&lt;br /&gt;
* Käsehobel Upgrade&lt;br /&gt;
* Drehbank&lt;br /&gt;
* 100W Lasercutter Überarbeitung&lt;br /&gt;
* 10 Jahre Hackerspace&lt;br /&gt;
&lt;br /&gt;
== Laufende Projekte ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot;&amp;gt;&lt;br /&gt;
Image:Voidnet Viator img.jpg|link=Reloaded: Voidnet Viator Cyberdeck |[[Voidnet Viator Cyberdeck]]&lt;br /&gt;
Image:BLEbc.jpg|link=Reloaded: Bluetooth LE bicycle computer |[[Bluetooth LE bicycle computer]]&lt;br /&gt;
Image:elektronisches_saiteninstrument.jpg|link=Reloaded: Elektronisches Saiteninstrument 1.0|[[Elektronisches Saiteninstrument 1.0]]&lt;br /&gt;
Image:neuer_CO2-Laser.jpg|link=Reloaded: CO₂-Laser 2.0|[[Reloaded: CO₂-Laser 2.0]]&lt;br /&gt;
Image:Diningroomlight_on_table.jpg|link=DesignerEsszimmerLampe|[[DesignerEsszimmerLampe|Designer Esszimmer Lampe]]&lt;br /&gt;
Image:HoloDingsYoutube.jpg|link=HoloDings|[[HoloDings|Holo Dings]]&lt;br /&gt;
Image:20180624-fpvauto-fpvauto-stdconfig.jpg|link=FPV-Auto|[[FPV-Auto]]&lt;br /&gt;
Image:LoRaGoPort aufRPi.jpg|link=LoRaWAN|[[LoRaWAN]]&lt;br /&gt;
Image:AVRProgrammer.jpg|link=AVRProgrammer|[[AVRProgrammer]]&lt;br /&gt;
Image:EXCISS-isback.jpg|link=EXCISS|[[EXCISS|EXCISS - Experimental Chondrule Formation at the ISS]]&lt;br /&gt;
Image:uni_frankfurt_2018.jpg|link=Elektronische_Bassflöte|[[Elektronische_Bassflöte|Elektronische kleine Bassflöte Version 2.0]]&lt;br /&gt;
Image:Wiessenthaner ESB 01.jpg|link=Elektronische_Bassflöte|[[Elektronische_Bassflöte|Elektronische kleine Bassflöte Version 1.5]]&lt;br /&gt;
Image:LineCamPrinter.jpg|link=LineCamPrinter|[[LineCamPrinter]]&lt;br /&gt;
Image:Ominibot.jpg|link=OmnibotWebcontrol|[[OmnibotWebcontrol]]&lt;br /&gt;
Image: Steering_kartesian.PNG|link=Space Robot Experimental aka SpaceREx|[[Space Robot Experimental aka SpaceREx]]&lt;br /&gt;
Image:Elektronische Bassquerfloete 1.jpg|link=Elektronische_große_Bassflöte_Version_1.0|[[Elektronische_große_Bassflöte_Version_1.0|Elektronische große Bassflöte Version 1.0]]&lt;br /&gt;
Image:Kleine Bassfloete.jpg|link=Elektronische_kleine_Bassflöte_Version_1.0|[[Elektronische_kleine_Bassflöte_Version_1.0|Elektronische kleine Bassflöte Version 1.0]]&lt;br /&gt;
Image:20170114_161830.jpg|link=Spider UFO|[[Spider UFO|Ufo von SpaceInLasers_3.0]]&lt;br /&gt;
Image:AutoUpload_2016_11_08_22_00_57.jpg|link=ReaktiveRadioLight|[[ReaktiveRadioLight|Reaktivlicht auf NRF24L01+ Basis]]&lt;br /&gt;
Image:DIY CNC Fräser 2016-10-25 19-42.jpg|link=OpenBuilds Fräse|[[OpenBuilds Fräse]]&lt;br /&gt;
Image:Trash.Cache.Logo.png|link=Trash.Cache|[[Trash.Cache]]&lt;br /&gt;
Image:Actioncam_case_1.jpg|link=CubicPlates|[[CubicPlates]]&lt;br /&gt;
Image:SpaceShuttel_base2.jpg|link=Space_Shuttle|[[Space_Shuttle]]&lt;br /&gt;
Image:ntc_clock_progress_1.jpg|link=Clockwork NTP|[[Clockwork NTP]]&lt;br /&gt;
Image:Arucomover.jpg|link=Arucomover|[[Arucomover]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Projekte im Planungsstadium ==&lt;br /&gt;
* [[Stickmaschine]] - Crowdfunding im Mai 2016 zur Anschaffung eines ''CrowdStitchers''&lt;br /&gt;
* [[Raum 2.0 - PHASE 2]]&lt;br /&gt;
* [[SNES-4-Space]] (Super Nintendo Entertainment System)&lt;br /&gt;
* [[hackffmhome|Startseite des Hackerspaces]]&lt;br /&gt;
* [[ATmega-Assembler-Lehrgang]]&lt;br /&gt;
* [[Geocache]]&lt;br /&gt;
* [[IR_Reaktivlicht]]&lt;br /&gt;
* [[Ultimaker - ALU]]&lt;br /&gt;
* [[Einrichtung]]&lt;br /&gt;
* [[Orscheler Seifenkistenrennen]]&lt;br /&gt;
* [[PCB Ätzresist tschüss Laser Apparat]]&lt;br /&gt;
&lt;br /&gt;
== Abgeschlossene Projekte ==&lt;br /&gt;
* [[MembraneBreathCtrl|Midi Breath-Controller with 4 CC joystick and optical metronome]]&lt;br /&gt;
* [[Schlüsselring]]&lt;br /&gt;
* [[Mini Sustain Pedal for APC Key25]]&lt;br /&gt;
* [[SAMLAIR Airbrush Chamber]]&lt;br /&gt;
* [[Flaschenlampe]]&lt;br /&gt;
* [[ESP8266 Internet Button]]&lt;br /&gt;
* [[CloudBox]]&lt;br /&gt;
* [[SpaceInLasers_3.0]] auf der [[Make Rhein-Main 2017]]&lt;br /&gt;
** [[Spider UFO]]&lt;br /&gt;
*** [[UFO]]&lt;br /&gt;
* [[SpaceInLasers|SpaceInLasers 2.0]]&lt;br /&gt;
* [[BrickUsingMultipleModules]]&lt;br /&gt;
* [[Barcode Scanner Hack]]&lt;br /&gt;
* [[Wackelbildprotokollator]]&lt;br /&gt;
* [[Do It Yourself Slider für Zeitraffer und Videoaufnahmen|Do It Yourself Slider]]&lt;br /&gt;
* [[Rundbunt_Mini_WIFI|Rundbunt Mini WIFI]]&lt;br /&gt;
* [[Mikroturbine]]&lt;br /&gt;
* [[HackffmActivitySensors_MQTT]]&lt;br /&gt;
* [[BrettBoard|BrettBoard - Modulares Transport System (work in progress)]]&lt;br /&gt;
* [[Ultraschall Luftpumpe]]&lt;br /&gt;
* [[Raspberry PI Zero + nano USB WiFi Adapter mod ]]&lt;br /&gt;
* [[Gobo-Projektor]]&lt;br /&gt;
* [[ESP8266 mit Arduino programmieren]]&lt;br /&gt;
* [[SMD Tools]]&lt;br /&gt;
* [[HackFFM-Duino_Chime]]&lt;br /&gt;
* [[Raum 2.0 - PHASE 1]]&lt;br /&gt;
* [[Workshop BB-One]]&lt;br /&gt;
* [[Arduino 1.0.6 auf Raspberry Pi installieren]]&lt;br /&gt;
* [[Arduino Bootloader Programmer]]&lt;br /&gt;
* [[raspicam|USB-Webcam am Raspberry]]&lt;br /&gt;
* [[Raspberry Pi enable ttyS0]]&lt;br /&gt;
* [[Spulentraeger]]&lt;br /&gt;
* [[LED step-up converter with ATtiny85]]&lt;br /&gt;
* [[RPG Effect Templates]]&lt;br /&gt;
* [[PLA Flieger]]&lt;br /&gt;
* [[Rundbuntplasma|Plasmalampe mit LPD8806 und Raspberry]]&lt;br /&gt;
* [[Rundbunt Mini]]&lt;br /&gt;
* [[Community 3d-Drucker]]&lt;br /&gt;
* [[Mehr_Dampf_Maus]]&lt;br /&gt;
* [[Mumomi_Electronic| mumomi RepRap Electronic]]&lt;br /&gt;
* [[Isolated_versatile_FTDI|Isolated versatile FTDI]]&lt;br /&gt;
* [[CO₂-Laser]]&lt;br /&gt;
* [[Jet Antrieb im Maßstab 1:87|Jet-Antrieb für einen Modelltruck im Maßstab 1:87]]&lt;br /&gt;
* [[Arduino_IDE_like_serial_monitor_in_the_Raspberry_Pi_shell|Arduino IDE like serial monitor in the Raspberry Pi shell]]&lt;br /&gt;
* [[Raspi_EDLC_UPS|Simple Uninterruptible Power Supply (UPS) for Raspberry Pi using Supercapacitors (EDLC)]] &lt;br /&gt;
* [[Processing250kBaud|Trick to use non-standard baud rates like 250kB under Linux with Processing]]&lt;br /&gt;
* [[DIY-Autoloader]]&lt;br /&gt;
* [[Hackffm³RepRap|hackffm³RepRap]]&lt;br /&gt;
* [[HanseBot|HanseBot I]]&lt;br /&gt;
* [[Podcast]]&lt;br /&gt;
* [[SimpleSDAudio|Arduino Library zur Audiowiedergabe mit SD-Karten]]&lt;br /&gt;
* [[Hackffm on Air|hackffm on Air]]&lt;br /&gt;
* [[HackffmActivitySensors]]&lt;br /&gt;
* [[LedBrett]]&lt;br /&gt;
* [[Merlin Extruder|Merlin Extruder]]&lt;br /&gt;
* [[Buntich]]&lt;br /&gt;
* [[Git Benutzen]]&lt;br /&gt;
* [[DIY Mikroskop| DIY Mikroskop]]&lt;br /&gt;
* [[WMFRA45|Webmontag 45]]&lt;br /&gt;
* [[Mendel_Upgrade|Ikea Mendel Upgrade]]&lt;br /&gt;
* [[Hackerspace Ffm Stempel und T-Shirts]]&lt;br /&gt;
* [[Drawbot@MfK]]&lt;br /&gt;
* [[@MfK]]&lt;br /&gt;
* [[3D Drucker für Wöhlerschule]] (3 Wochen)&lt;br /&gt;
* [[3D-Drucker mit AUGE.de]] (7 Monate)&lt;br /&gt;
* [[3D-Drucker für MfK]] (2 Monate)&lt;br /&gt;
* [[Raumsuche|Raum 1.0]] (12 Monate)&lt;br /&gt;
* [[Hackerspace Flyer]] (7 Wochen)&lt;br /&gt;
* [[Wikimediawettbewerb]]&lt;br /&gt;
* [[Bristlebots]] (MfK, TEDxYouth)&lt;br /&gt;
&lt;br /&gt;
== Eingestellte Projekte ==&lt;br /&gt;
* [[HACKFFM-Server]]&lt;br /&gt;
* [[Community 3d-Drucker 2.0]]&lt;br /&gt;
* [[RGB-Pipe]]&lt;br /&gt;
* [[Fail Button]]&lt;br /&gt;
* [[Ultraschall GPS]]&lt;br /&gt;
* [[Neuland Taskforce]]&lt;br /&gt;
* [[Airsoft_Pellet_Bitmaps_(build_blog)|Airsoft Pellet Bitmaps (build blog)]]&lt;br /&gt;
&lt;br /&gt;
[[Kategorie:Projekte|!]]&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Voidnet_Viator_Cyberdeck&amp;diff=11457</id>
		<title>Voidnet Viator Cyberdeck</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Voidnet_Viator_Cyberdeck&amp;diff=11457"/>
				<updated>2022-09-29T15:53:41Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: Die Seite wurde neu angelegt: „ 400px|  A savage, retro-cyberpunk inspired Cyberdeck with a thrilling human interface, finished for the Hackaday Cyberdeck c…“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
[[Datei:Voidnet Viator img.jpg |400px|]]&lt;br /&gt;
&lt;br /&gt;
A savage, retro-cyberpunk inspired Cyberdeck with a thrilling human interface, finished for the Hackaday Cyberdeck challenge 2022.&lt;br /&gt;
&lt;br /&gt;
The custom made high ergonomic roll-pin mouse pointer allows typing on the mechanical keyboard and mouse movement in the same hand position.&lt;br /&gt;
This interface is supported by a wide-screen touchscreen, a psp-knob used for scrolling, stereo speakers, USB Hub, a tiny status OLED, GPIO switches and LEDs, and an&lt;br /&gt;
elaborate visualization of the currently used memory.&lt;br /&gt;
To enable project building, 5V power is supplied via two banana jacks and a 8 channel signal analyzer mounted under the keyboard.&lt;br /&gt;
Highly portable with a grip handle, cable-organizing shoulder strap, a flashlight and two 18650 Lion cells the Viator is a viable companion for your next run.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Links'''&lt;br /&gt;
&lt;br /&gt;
Video:&lt;br /&gt;
&lt;br /&gt;
Fusion 3d-viewer: [https://a360.co/3SyB80R]&lt;br /&gt;
&lt;br /&gt;
Github: [https://github.com/LeandraChristine/voidnet_viator]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Build'''&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_rollmouse.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_right.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_inside.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_left.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_topangle.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_panel.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:viator_wiring.png|300px|]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''3d-Files'''&lt;br /&gt;
If you wish to build a similar device you can probably use a lot of the printed parts, while modifying others to suit your needs.&lt;br /&gt;
Some highlights of the build and pictures can be referenced on the Project Page on my Hackerspace WIKI:&lt;br /&gt;
&lt;br /&gt;
The parts are available on github: https://github.com/LeandraChristine/voidnet_viator&lt;br /&gt;
&lt;br /&gt;
'''Scripts'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''BOM'''&lt;br /&gt;
&lt;br /&gt;
Other than the 3d printed parts (all FDM parts printed in black PETG, all Resin printed in Elegoo ABS-like clear-red) the following was used:&lt;br /&gt;
&lt;br /&gt;
'''Base'''&lt;br /&gt;
&lt;br /&gt;
- Raspberry Pi 4 (+SD card)&lt;br /&gt;
&lt;br /&gt;
- Corsair K65 RGB 60% mechanical keyboard (don't get too attached to it)&lt;br /&gt;
&lt;br /&gt;
- Waveshare Raspberry Pi 7.9 inch Capacitive LCD HDMI Display 400 x 1280 (comes with great Raspi HDMI and USB connectors)&lt;br /&gt;
&lt;br /&gt;
- Geekworm Raspberry Pi UPS, X728 V2.1 (or alternative)&lt;br /&gt;
&lt;br /&gt;
- 2x 18650 (unprotected due to the X728 spacing) Lion cells&lt;br /&gt;
&lt;br /&gt;
- 2x Goobay 4-Port USB 2.0 Hub (needs a super slim form factor to fit. I used this: https://www.berrybase.de/4-port-usb-2.0-hub-mit-0-4m-anschlusskabel-farbe-schwarz)&lt;br /&gt;
&lt;br /&gt;
- Stero USB Speaker (2 x 0,5W, I used: https://www.berrybase.de/externer-usb-mini-lautsprecher-schwarz)&lt;br /&gt;
&lt;br /&gt;
- Alumnium Angle 40mm x 20mm, cut to a length of 290mm (the 3d files include 2 drill-guides to help get the holes right)&lt;br /&gt;
&lt;br /&gt;
- 3x 4mm Brass rods ~330mm length (cut a 1m part into 3, to clamp the 3d printed parts cut a thread at the end of each rod)&lt;br /&gt;
&lt;br /&gt;
- M4 Nuts to secure the clamping shell to the brass rods&lt;br /&gt;
&lt;br /&gt;
- M2 cylinder screws of various lengths ()&lt;br /&gt;
&lt;br /&gt;
- M2.5 screws and standoffs of various lengths (for the raspi, USP and waveshare display)&lt;br /&gt;
&lt;br /&gt;
- M3 cylinder screws of various lengths ()&lt;br /&gt;
&lt;br /&gt;
- Wiring (e.g. 0.14mm), Connectors and general soldering stuff&lt;br /&gt;
&lt;br /&gt;
- Some USB and MINI-USB connectors to solder (to configure custom wires that are slim enough below the keyboard)&lt;br /&gt;
&lt;br /&gt;
- Threaded inserts / Knurled Nuts (M3) (pretty much used everywhere)&lt;br /&gt;
&lt;br /&gt;
- (optional) microSD / T-Flash to microSD extension (to get to the SD card easier)&lt;br /&gt;
&lt;br /&gt;
'''Rolling mouse'''&lt;br /&gt;
&lt;br /&gt;
- 8mm stainless steel shaft&lt;br /&gt;
&lt;br /&gt;
- 3x IGUS drylin® R Lineargleitbuchse RJUM-01 (or LM8UU, but it will not feel as nice and smooth)&lt;br /&gt;
&lt;br /&gt;
- optics, chip and bits off a cheap, wired, optical mouse (I used ISY ICM-1000, which has a A2803 optical mouse sensor: http://www.nst-ic.com/nstfileupload/productsinfo/20190703095231_293.pdf)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Additional Features'''&lt;br /&gt;
&lt;br /&gt;
- Adafruit 15x7 CharliePlex LED Matrix Display FeatherWing - Red&lt;br /&gt;
&lt;br /&gt;
- Adafruit OLED for Raspberry Pi Pico, 128x32, I2C (scratch that, it died randomly and was replaced by a Generic 0.91 Inch, White 128X32 I2C OLED)&lt;br /&gt;
&lt;br /&gt;
- AZDelivery Logic Analyzer 8 CH, 24MHz&lt;br /&gt;
&lt;br /&gt;
- 2x 4mm Banana Jacks (22mm length, one red, one black...I did not like the red I got so a 3d file for resin printing your own is included)&lt;br /&gt;
&lt;br /&gt;
- InLine 33441G USB 3.1 Adaptercable Male C to Female C (for the charging port connected to the UPS)&lt;br /&gt;
&lt;br /&gt;
- 0.28&amp;quot; mini Digital Voltmeter Display&lt;br /&gt;
&lt;br /&gt;
- (optional) 4x WAGO 221-412 2 Fach clamps (to expose the I2C Bus on the backside)&lt;br /&gt;
&lt;br /&gt;
- PSP Slim analog Controller Joystick&lt;br /&gt;
&lt;br /&gt;
- Teensy LC (to generate a HID Keyboard and Mouse, you can try a different controller here....but I had some issues with the Circuitpython ones)&lt;br /&gt;
&lt;br /&gt;
- 7x different color 5mm LEDS (and resistors matched to the GPIO output)&lt;br /&gt;
&lt;br /&gt;
- 7x LED housing for 5mm leds (I used Signal Construct 1089)&lt;br /&gt;
&lt;br /&gt;
- 4x Miniature Toggle Switch (I scavenged for these, you can also use any other switches or buttons that fit in the front panel)&lt;br /&gt;
&lt;br /&gt;
- Hefty, vandalism-safe Button with LED indicator for 10mm hole (power button, there is plenty of space reserved for this in the housing so even longer models should fit)&lt;br /&gt;
&lt;br /&gt;
- 5mm hole momentary switch (for below the screen, wired to the waveshare display's on/off switch so it can be used to conserve power)&lt;br /&gt;
&lt;br /&gt;
'''Handle'''&lt;br /&gt;
&lt;br /&gt;
- Bike Handle Grip (Diameter: ~24 mm. Length: ~ 110 mm, cut to size)&lt;br /&gt;
&lt;br /&gt;
- Aluminum Pipe 24mm OD, 20mm ID&lt;br /&gt;
&lt;br /&gt;
- M5 threaded rod ~140mm length&lt;br /&gt;
&lt;br /&gt;
- 2x M5 Ring nut (screws to the threaded rod)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Strap'''&lt;br /&gt;
&lt;br /&gt;
- 2x Tactical Belt (so you get two buckles to remove the strap completely)&lt;br /&gt;
&lt;br /&gt;
- Some more M3 Bolts &amp;amp; Nuts&lt;br /&gt;
&lt;br /&gt;
- USB or other cables you wish to carry&lt;br /&gt;
&lt;br /&gt;
- Cable ties (to attach the belt-buckles to the 4mm rods on the main case)&lt;br /&gt;
&lt;br /&gt;
'''Greeblies'''&lt;br /&gt;
&lt;br /&gt;
- 2x CPU cooler above the speaker covers&lt;br /&gt;
&lt;br /&gt;
- 1x rectangular cooler on the left side&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Experimental'''&lt;br /&gt;
&lt;br /&gt;
- SMALLRIG Ultra Slim 4K HDMI Kabel  Micro HDMI Male to Full HDMI Female 14cm (to expose the 2nd HDMI output on the back, but so far I did not get that to work nicely)&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Voidnet_Viator_img.jpg&amp;diff=11456</id>
		<title>Datei:Voidnet Viator img.jpg</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Voidnet_Viator_img.jpg&amp;diff=11456"/>
				<updated>2022-09-29T15:40:26Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Viator_wiring.png&amp;diff=11455</id>
		<title>Datei:Viator wiring.png</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Viator_wiring.png&amp;diff=11455"/>
				<updated>2022-09-29T15:37:44Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Viator_topangle.png&amp;diff=11454</id>
		<title>Datei:Viator topangle.png</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Viator_topangle.png&amp;diff=11454"/>
				<updated>2022-09-29T15:37:18Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Viator_rollmouse.png&amp;diff=11453</id>
		<title>Datei:Viator rollmouse.png</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Viator_rollmouse.png&amp;diff=11453"/>
				<updated>2022-09-29T15:37:05Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Viator_right.png&amp;diff=11452</id>
		<title>Datei:Viator right.png</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Viator_right.png&amp;diff=11452"/>
				<updated>2022-09-29T15:36:44Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Viator_panel.png&amp;diff=11451</id>
		<title>Datei:Viator panel.png</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Viator_panel.png&amp;diff=11451"/>
				<updated>2022-09-29T15:36:25Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Viator_left.png&amp;diff=11450</id>
		<title>Datei:Viator left.png</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Viator_left.png&amp;diff=11450"/>
				<updated>2022-09-29T15:36:06Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Viator_inside.png&amp;diff=11449</id>
		<title>Datei:Viator inside.png</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Viator_inside.png&amp;diff=11449"/>
				<updated>2022-09-29T15:35:52Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Mitglieder&amp;diff=11448</id>
		<title>Mitglieder</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Mitglieder&amp;diff=11448"/>
				<updated>2022-09-06T17:10:02Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{|&lt;br /&gt;
! width=120px|&lt;br /&gt;
! width=150px| Name&lt;br /&gt;
! width=120px| Seit&lt;br /&gt;
! width=200px| Tag&lt;br /&gt;
! width=240px| Projekt&lt;br /&gt;
! width=100px| Woher &lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Lutz_Lisseck.jpg|100px|link=Benutzer:Tut]]&lt;br /&gt;
| Tut&amp;lt;br&amp;gt;(Lutz Lisseck)&lt;br /&gt;
| 2011&amp;lt;br&amp;gt;2013 1. Vorstand&lt;br /&gt;
| Open Monday (fast immer)&amp;lt;br&amp;gt;andere Tage (gelegentlich)&lt;br /&gt;
| [https://www.hackerspace-ffm.de Hackerspace-FFM e.V.] :-) &amp;lt;br&amp;gt;[[FPV-Auto]]&amp;lt;br&amp;gt;[[LoRaWAN]]&amp;lt;br&amp;gt;[[LineCamPrinter]]&amp;lt;br&amp;gt;[[Rundbunt Mini]]&amp;lt;br&amp;gt;[[CO₂-Laser]]&amp;lt;br&amp;gt;[[HackffmActivitySensors]]&amp;lt;br&amp;gt;[[Buntich]]&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Avatar strange.jpg|100px|link=Benutzer:Strange]]&lt;br /&gt;
| strange&amp;lt;br&amp;gt;(Alexander Oros)&lt;br /&gt;
| 2015&lt;br /&gt;
| Open Monday&lt;br /&gt;
| [[FPV-Auto]]&amp;lt;br&amp;gt;[[DesignerEsszimmerLampe]]&amp;lt;br&amp;gt;[[MikroEcke]]&lt;br /&gt;
| Gräfenhausen&amp;lt;br&amp;gt;35 km&lt;br /&gt;
|-&lt;br /&gt;
| [[Datei:PeterWiessenthaner.jpg|100px|link=Benutzer:Hspace]]&lt;br /&gt;
| hspace&amp;lt;br&amp;gt;(Peter Wiessenthaner)&lt;br /&gt;
| 2016&lt;br /&gt;
| Open Monday&lt;br /&gt;
| [[Elektronische_Bassflöte]]&lt;br /&gt;
| Frankfurt-Bockenheim&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Srek.jpg|100px|link=Benutzer:Srek]]&lt;br /&gt;
| [[User:Srek| Srek&amp;lt;br&amp;gt;(Björn Marl)]]&lt;br /&gt;
| 2012&lt;br /&gt;
| Open Monday/RepRap Wednesday&lt;br /&gt;
| [[FPV-Auto]] &amp;lt;br&amp;gt; [[Merlin_Extruder]]&lt;br /&gt;
| Friedrichsdorf&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Beroot.jpg|100px|link=Benutzer:Beroot]]&lt;br /&gt;
| [[User:Beroot| Beroot&amp;lt;br&amp;gt;(Michael Schopferer)]]&lt;br /&gt;
| 2013&lt;br /&gt;
| Open Monday (gelegentlich)&lt;br /&gt;
| Wordclock &amp;lt;br&amp;gt; Arduino, ESP &amp;amp; LEDs &amp;lt;br&amp;gt; Lasercutter und Mechanik (fräsen, drehen, ...)&lt;br /&gt;
| Frankfurt-Nied&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Cheasy.jpg|100px]]&lt;br /&gt;
| Cheasy&amp;lt;br&amp;gt;(Christoph Sold)&lt;br /&gt;
| 2016&lt;br /&gt;
| Open Monday (gelegentlich)&lt;br /&gt;
| Microcontroller (AVM, Raspberry Pi), LEDs &amp;lt;br&amp;gt; Lasercutter&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Passbild 2016-03 posterized 003.png|100px]]&lt;br /&gt;
| [[Benutzer:Axl|AXL]]&amp;lt;br&amp;gt;(Axel Föhr)&lt;br /&gt;
| 2010&lt;br /&gt;
| erratic&lt;br /&gt;
| Microcontroller, RasPi, Drawbots&lt;br /&gt;
|&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| &lt;br /&gt;
| [[Benutzer:Phil|Phil]]&amp;lt;br&amp;gt;&lt;br /&gt;
| 2019&lt;br /&gt;
| &lt;br /&gt;
| RasPi&lt;br /&gt;
|&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:ThomasBild2020.jpg|70px]]&lt;br /&gt;
| [[Benutzer:Tepezet|Tepezet]]&amp;lt;br&amp;gt;(Thomas Perizonius)&lt;br /&gt;
| 2019&lt;br /&gt;
| meistens Mo / Mi&lt;br /&gt;
| Musikinstrumente für nichtmusikalische (wie mich), Linux, [[Midi-Ukulele]], [[Kugelrobot]], [[Pickup-Wickelmaschine]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Sf pic.jpeg|70px]]&lt;br /&gt;
| [[Benutzer:Shintaro| Shintaro]]&amp;lt;br&amp;gt;(Shintaro Fujita)&lt;br /&gt;
| 2019&lt;br /&gt;
| meistens Mo / Mi&lt;br /&gt;
| [[OmnibotWebcontrol]], [[HoloDings]], [[EXCISS]], [[Space Shuttle]], [[Clockwork NTP]], [[Barcode Scanner Hack]], [[BrettBoard]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Leandra_pic.jpg|70px]]&lt;br /&gt;
| [[Benutzer:LeandraChristine| LeandraChristine]]&amp;lt;br&amp;gt;(Christine)&lt;br /&gt;
| 2013&lt;br /&gt;
| meistens Mo / Mi&lt;br /&gt;
| [[Voidnet Viator Cyberdeck]], [[SAMLAIR Airbrush Chamber]], [[EXCISS]], [[Spulentraeger]], [[Mehr_Dampf_Maus]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Mitglieder&amp;diff=11447</id>
		<title>Mitglieder</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Mitglieder&amp;diff=11447"/>
				<updated>2022-09-06T17:08:40Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{|&lt;br /&gt;
! width=120px|&lt;br /&gt;
! width=150px| Name&lt;br /&gt;
! width=120px| Seit&lt;br /&gt;
! width=200px| Tag&lt;br /&gt;
! width=240px| Projekt&lt;br /&gt;
! width=100px| Woher &lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Lutz_Lisseck.jpg|100px|link=Benutzer:Tut]]&lt;br /&gt;
| Tut&amp;lt;br&amp;gt;(Lutz Lisseck)&lt;br /&gt;
| 2011&amp;lt;br&amp;gt;2013 1. Vorstand&lt;br /&gt;
| Open Monday (fast immer)&amp;lt;br&amp;gt;andere Tage (gelegentlich)&lt;br /&gt;
| [https://www.hackerspace-ffm.de Hackerspace-FFM e.V.] :-) &amp;lt;br&amp;gt;[[FPV-Auto]]&amp;lt;br&amp;gt;[[LoRaWAN]]&amp;lt;br&amp;gt;[[LineCamPrinter]]&amp;lt;br&amp;gt;[[Rundbunt Mini]]&amp;lt;br&amp;gt;[[CO₂-Laser]]&amp;lt;br&amp;gt;[[HackffmActivitySensors]]&amp;lt;br&amp;gt;[[Buntich]]&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Avatar strange.jpg|100px|link=Benutzer:Strange]]&lt;br /&gt;
| strange&amp;lt;br&amp;gt;(Alexander Oros)&lt;br /&gt;
| 2015&lt;br /&gt;
| Open Monday&lt;br /&gt;
| [[FPV-Auto]]&amp;lt;br&amp;gt;[[DesignerEsszimmerLampe]]&amp;lt;br&amp;gt;[[MikroEcke]]&lt;br /&gt;
| Gräfenhausen&amp;lt;br&amp;gt;35 km&lt;br /&gt;
|-&lt;br /&gt;
| [[Datei:PeterWiessenthaner.jpg|100px|link=Benutzer:Hspace]]&lt;br /&gt;
| hspace&amp;lt;br&amp;gt;(Peter Wiessenthaner)&lt;br /&gt;
| 2016&lt;br /&gt;
| Open Monday&lt;br /&gt;
| [[Elektronische_Bassflöte]]&lt;br /&gt;
| Frankfurt-Bockenheim&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Srek.jpg|100px|link=Benutzer:Srek]]&lt;br /&gt;
| [[User:Srek| Srek&amp;lt;br&amp;gt;(Björn Marl)]]&lt;br /&gt;
| 2012&lt;br /&gt;
| Open Monday/RepRap Wednesday&lt;br /&gt;
| [[FPV-Auto]] &amp;lt;br&amp;gt; [[Merlin_Extruder]]&lt;br /&gt;
| Friedrichsdorf&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Beroot.jpg|100px|link=Benutzer:Beroot]]&lt;br /&gt;
| [[User:Beroot| Beroot&amp;lt;br&amp;gt;(Michael Schopferer)]]&lt;br /&gt;
| 2013&lt;br /&gt;
| Open Monday (gelegentlich)&lt;br /&gt;
| Wordclock &amp;lt;br&amp;gt; Arduino, ESP &amp;amp; LEDs &amp;lt;br&amp;gt; Lasercutter und Mechanik (fräsen, drehen, ...)&lt;br /&gt;
| Frankfurt-Nied&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Cheasy.jpg|100px]]&lt;br /&gt;
| Cheasy&amp;lt;br&amp;gt;(Christoph Sold)&lt;br /&gt;
| 2016&lt;br /&gt;
| Open Monday (gelegentlich)&lt;br /&gt;
| Microcontroller (AVM, Raspberry Pi), LEDs &amp;lt;br&amp;gt; Lasercutter&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Passbild 2016-03 posterized 003.png|100px]]&lt;br /&gt;
| [[Benutzer:Axl|AXL]]&amp;lt;br&amp;gt;(Axel Föhr)&lt;br /&gt;
| 2010&lt;br /&gt;
| erratic&lt;br /&gt;
| Microcontroller, RasPi, Drawbots&lt;br /&gt;
|&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| &lt;br /&gt;
| [[Benutzer:Phil|Phil]]&amp;lt;br&amp;gt;&lt;br /&gt;
| 2019&lt;br /&gt;
| &lt;br /&gt;
| RasPi&lt;br /&gt;
|&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:ThomasBild2020.jpg|70px]]&lt;br /&gt;
| [[Benutzer:Tepezet|Tepezet]]&amp;lt;br&amp;gt;(Thomas Perizonius)&lt;br /&gt;
| 2019&lt;br /&gt;
| meistens Mo / Mi&lt;br /&gt;
| Musikinstrumente für nichtmusikalische (wie mich), Linux, [[Midi-Ukulele]], [[Kugelrobot]], [[Pickup-Wickelmaschine]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Sf pic.jpeg|70px]]&lt;br /&gt;
| [[Benutzer:Shintaro| Shintaro]]&amp;lt;br&amp;gt;(Shintaro Fujita)&lt;br /&gt;
| 2019&lt;br /&gt;
| meistens Mo / Mi&lt;br /&gt;
| [[OmnibotWebcontrol]], [[HoloDings]], [[EXCISS]], [[Space Shuttle]], [[Clockwork NTP]], [[Barcode Scanner Hack]], [[BrettBoard]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
||&lt;br /&gt;
|- &lt;br /&gt;
| [[Datei:Leandra_pic.jpg|70px]]&lt;br /&gt;
| [[Benutzer:LeandraChristine| LeandraChristine]]&amp;lt;br&amp;gt;(Christine)&lt;br /&gt;
| 2020&lt;br /&gt;
| meistens Mo / Mi&lt;br /&gt;
| [[Voidnet Viator Cyberdeck]], [[SAMLAIR Airbrush Chamber]], [[EXCISS]], [[Spulentraeger]], [[Mehr_Dampf_Maus]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Leandra_pic.jpg&amp;diff=11446</id>
		<title>Datei:Leandra pic.jpg</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Leandra_pic.jpg&amp;diff=11446"/>
				<updated>2022-09-06T17:03:23Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Protokoll_2022.06.22&amp;diff=11436</id>
		<title>Protokoll 2022.06.22</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Protokoll_2022.06.22&amp;diff=11436"/>
				<updated>2022-06-22T20:03:28Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== VORBEREITUNG FÜR Protokoll der Jahresvollversammlung des Hackerspace-FFM e.V. ==&lt;br /&gt;
Datum: Mittwoch den 22. Juni 2022&lt;br /&gt;
&lt;br /&gt;
Ort: Hackerspace-FFM e.V., Ludwig-Erhard-Str. 32, 61440 Oberursel (Taunus)&lt;br /&gt;
&lt;br /&gt;
Versammlungsbeginn: 20:30 Uhr&lt;br /&gt;
&lt;br /&gt;
Versammlungsleiter: Lutz Lisseck (Vorstand: Schatzmeister)&lt;br /&gt;
&lt;br /&gt;
Protokollführer: Leandra Christine Schneider&lt;br /&gt;
&lt;br /&gt;
=== Tagesordnung laut Einladung vom 05.06.2022 ===&lt;br /&gt;
# Wahl des Protokollführers, Feststellung der Beschlussfähigkeit&lt;br /&gt;
# Begrüßung&lt;br /&gt;
# Bericht des Vorstandes, Danksagung&lt;br /&gt;
# Bericht des Schatzmeisters, des Kassenprüfers und Entlastung des Schatzmeisters und Vorstandes&lt;br /&gt;
# Wiederwahl des Vorstandes&lt;br /&gt;
# Mitgliedssituation, mittelfristige Finanzierung des Vereins&lt;br /&gt;
# Verschiedenes&lt;br /&gt;
&lt;br /&gt;
=== TOP 1 ===&lt;br /&gt;
Lutz Lisseck eröffnet die Mitgliederversammlung, stellt die Satzungsgemäße Einberufung sowie die Beschlussfähigkeit (22 Mitglieder anwesend, 3 davon online) fest. Leandra Schneider wird als Protokollführer festgelegt.&lt;br /&gt;
&lt;br /&gt;
=== TOP 2 ===&lt;br /&gt;
Lutz Lisseck begrüßt die Mitglieder.&lt;br /&gt;
&lt;br /&gt;
=== TOP 3 ===&lt;br /&gt;
Lutz Lisseck berichtet und bedankt sich über in der Vergangenheit durchgeführte Aktionen:&lt;br /&gt;
* 2020&lt;br /&gt;
** Mini Autos&lt;br /&gt;
** Fritz Heizkörper Thermostate&lt;br /&gt;
* 2021&lt;br /&gt;
* 2022&lt;br /&gt;
** Werkstatt gut sortiert und erweitert&lt;br /&gt;
** OpenBuilds Fräse Erweiterungen&lt;br /&gt;
** Ubiquity&lt;br /&gt;
&lt;br /&gt;
=== TOP 4 ===&lt;br /&gt;
Christin Schneider (Kassenprüfer) bestätigt die ordnungsgemäße Kassenführung für die Jahre 2019 bis Mitte 2022. Am 31.12.2021 betrug der Kontostand 6316.85€. Sie schlägt die Entlastung des Schatzmeister vor. &lt;br /&gt;
&lt;br /&gt;
Die Versammlung beschließt mit 21 Ja, 0 Nein, 1 Enthaltung die Entlastung des Schatzmeisters (Lutz Lisseck). &lt;br /&gt;
&lt;br /&gt;
Der Schatzmeister erörtert die derzeitige Finanzlage und weißt auf die&lt;br /&gt;
erwartete Steigerung der Heizkosten hin.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== TOP 5 ===&lt;br /&gt;
Shintaro Fujita stellt sich zur Wiederwahl als Schriftführer zur Verfügung.  &lt;br /&gt;
&lt;br /&gt;
Shintaro Fujita wird mit 21 Ja, 0 Nein, 1 Enthaltungen zum Schriftführer gewählt. Shintaro Fujita nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck stellt sich zur Wiederwahl als Schatzmeister zur Verfügung. &lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck wird mit 21 Ja, 0 Nein, 1 Enthaltungen zum Schatzmeister gewählt. Lutz Lisseck nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
Leandra Christine Schneider stellt sich zur Wiederwahl als Kassenprüferin zur Verfügung. &lt;br /&gt;
&lt;br /&gt;
Leandra Christine Schneider wird mit 21 Ja, 0 Nein, 1 Enthaltungen zum Kassenprüfer gewählt. Leandra Christine Schneider nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
=== TOP 6 ===&lt;br /&gt;
Lutz Lisseck erläutert die Mitgliedssituation. Der Verein hat derzeit 48 reguläre Mitglieder (2019: 54 Mitglieder).&lt;br /&gt;
&lt;br /&gt;
=== TOP 7 ===&lt;br /&gt;
Verschiedenes:&lt;br /&gt;
* Mitgliederwerbung? Durch Messen? Durch Kollaboration mit dem Digitalrat Oberursel? Mehr Mitgliederwerbung zur Kompensation? Mehr Attraktivität durch Workshops? Vorschlag: Bei 20€ lassen und sobald Kosten offensichtlich werden Erhöhung auf 25€. &lt;br /&gt;
* Abstimmung zur Anpassung der Beitragsordnung durch die Mitgliederversammlung: '''Zusatz zur Erhöhung der Beitragskosten durch den Vorstand'''&lt;br /&gt;
 Innhalb des Zeitraumes bis zum Zusammenkommen zur nächsten Vollverversammlung wird dem Vorstand eingeräumt die in §1 festgesetzten Mindestbeitrag für ordentliche Mitglieder um bis zu 5€ zu erhöhen (auch skalierend in Einzelschritten).&lt;br /&gt;
 Der Vorschag wurde per offener Abstimmung mit 22 Ja zu 0 Nein Stimmen angenommen.&lt;br /&gt;
* Tür elektrisch öffnen: Bisher keine Schreinerei gefunden die hier helfen kann. Material ist ausgewählt.&lt;br /&gt;
&lt;br /&gt;
*** Drehbank, Klaus wird sich über eine Erweiterung der Drehbank informieren (Achse zum Kegeldrehen)&lt;br /&gt;
*** Wiederbefüllen der Acrylglas Vorräte&lt;br /&gt;
*** Akündigung der erhöhung der Kosten für Getränke Aufgrund erhöhter Enkaufspreise&lt;br /&gt;
*** Klaus wird sich über eine mögliche Erweiterung der Drehbank informieren. (Achse zum Kegeldrehen).&lt;br /&gt;
*** Potentieller Workshop der Stickmaschine durch Anna-Maria Philipp&lt;br /&gt;
*** Cleanup des Space: Eine Entrümplungsaktion in 4 Wochen. Bitte bis zu diesem Zeitpunkt persönliche Gegenstände / Projekte mit Namen zeichnen oder in seine Box packen. Übriggebliebene Teile werden ggf. entsorgt (bzw. über die Mailingliste).&lt;br /&gt;
    Diese Aktion wird über die Mailingliste angekündigt.&lt;br /&gt;
*** Müllsituation wird weiter wie gehabt gehandhabt. Bei Bedarf ist es eine Option einen Müllsack zur abholung einzukaufen.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck beendet die Versammlung um 21:50 Uhr&lt;br /&gt;
&lt;br /&gt;
[[Kategorie: Protokolle]]&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Hackerspace_Ffm:Gemeinschaftsportal&amp;diff=11199</id>
		<title>Hackerspace Ffm:Gemeinschaftsportal</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Hackerspace_Ffm:Gemeinschaftsportal&amp;diff=11199"/>
				<updated>2020-10-19T19:59:21Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Übersicht der aktuellen Aktivitäten und Gemeinschafts-Projekte&lt;br /&gt;
&lt;br /&gt;
== Laufende Aktivitäten ==&lt;br /&gt;
* [[Termine]]&lt;br /&gt;
* [[Projekte]]&lt;br /&gt;
* [[Workshops]]&lt;br /&gt;
* [[Vorträge]]&lt;br /&gt;
* [[Einrichtung]]&lt;br /&gt;
&lt;br /&gt;
== Discord Server ==&lt;br /&gt;
* [https://discord.gg/tsDEtae Discord]&lt;br /&gt;
&lt;br /&gt;
== Besondere Werkzeuge im Hackerspace ==&lt;br /&gt;
Siehe [[:Kategorie:Werkzeug|Werkzeug-Seite]] - bitte die [[Ordnungssysteme]] beachten!&lt;br /&gt;
&lt;br /&gt;
== Hackerspace-FFM Konten ==&lt;br /&gt;
* [https://github.com/hackffm GitHub]&lt;br /&gt;
* [https://twitter.com/#!/hackffm @hackffm]&lt;br /&gt;
&lt;br /&gt;
== Vergünstigungen ==&lt;br /&gt;
* [[Rabatte]]&lt;br /&gt;
&lt;br /&gt;
== Organisatorisches ==&lt;br /&gt;
* [[Protokolle]]&lt;br /&gt;
* [[Kooperation]]&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Hackerspace_Ffm:Gemeinschaftsportal&amp;diff=11198</id>
		<title>Hackerspace Ffm:Gemeinschaftsportal</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Hackerspace_Ffm:Gemeinschaftsportal&amp;diff=11198"/>
				<updated>2020-10-19T19:58:15Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Übersicht der aktuellen Aktivitäten und Gemeinschafts-Projekte&lt;br /&gt;
&lt;br /&gt;
== Laufende Aktivitäten ==&lt;br /&gt;
* [[Termine]]&lt;br /&gt;
* [[Projekte]]&lt;br /&gt;
* [[Workshops]]&lt;br /&gt;
* [[Vorträge]]&lt;br /&gt;
* [[Einrichtung]]&lt;br /&gt;
&lt;br /&gt;
== Discord Server ==&lt;br /&gt;
* [https://discord.gg/tsDEtae]&lt;br /&gt;
&lt;br /&gt;
== Besondere Werkzeuge im Hackerspace ==&lt;br /&gt;
Siehe [[:Kategorie:Werkzeug|Werkzeug-Seite]] - bitte die [[Ordnungssysteme]] beachten!&lt;br /&gt;
&lt;br /&gt;
== Hackerspace-FFM Konten ==&lt;br /&gt;
* [https://github.com/hackffm GitHub]&lt;br /&gt;
* [https://twitter.com/#!/hackffm @hackffm]&lt;br /&gt;
&lt;br /&gt;
== Vergünstigungen ==&lt;br /&gt;
* [[Rabatte]]&lt;br /&gt;
&lt;br /&gt;
== Organisatorisches ==&lt;br /&gt;
* [[Protokolle]]&lt;br /&gt;
* [[Kooperation]]&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Protokoll_2019.11.04&amp;diff=10884</id>
		<title>Protokoll 2019.11.04</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Protokoll_2019.11.04&amp;diff=10884"/>
				<updated>2019-11-04T22:25:04Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: /* VORLÄUFIGES Protokoll der Jahresvollversammlung des Hackerspace-FFM e.V. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Protokoll der Jahresvollversammlung des Hackerspace-FFM e.V. ==&lt;br /&gt;
Datum: Montag den 04. November 2019&lt;br /&gt;
&lt;br /&gt;
Ort: Hackerspace-FFM e.V., Ludwig-Erhard-Str. 32, 61440 Oberursel (Taunus)&lt;br /&gt;
&lt;br /&gt;
Versammlungsbeginn: 20:00 Uhr&lt;br /&gt;
&lt;br /&gt;
Versammlungsleiter: Lutz Lisseck (Vorstand: Schatzmeister)&lt;br /&gt;
&lt;br /&gt;
Protokollführer: Leandra Christine Schneider&lt;br /&gt;
&lt;br /&gt;
=== Tagesordnung laut Einladung vom 03.10.2019 ===&lt;br /&gt;
# Wahl des Protokollführers, Feststellung der Beschlussfähigkeit&lt;br /&gt;
# Begrüßung&lt;br /&gt;
# Bericht des Vorstandes, Danksagung&lt;br /&gt;
# Bericht des Schatzmeisters, des Kassenprüfers und Entlastung des Schatzmeisters und Vorstandes&lt;br /&gt;
# Wiederwahl des Vorstandes&lt;br /&gt;
# Mitgliedssituation, mittelfristige Finanzierung des Vereins&lt;br /&gt;
# Verschiedenes&lt;br /&gt;
&lt;br /&gt;
=== TOP 1 ===&lt;br /&gt;
Lutz Lisseck eröffnet die Mitgliederversammlung, stellt die Satzungsgemäße Einberufung sowie die Beschlussfähigkeit fest. Leandra Schneider wird als Protokollführer festgelegt.&lt;br /&gt;
&lt;br /&gt;
=== TOP 2 ===&lt;br /&gt;
Lutz Lisseck begrüßt die Mitglieder.&lt;br /&gt;
&lt;br /&gt;
=== TOP 3 ===&lt;br /&gt;
Lutz Lisseck berichtet und bedankt sich über in der Vergangenheit durchgeführte Aktionen:&lt;br /&gt;
* 2017&lt;br /&gt;
** November: MikroEcke (Alexander O.)&lt;br /&gt;
* 2018&lt;br /&gt;
** Februar: LoRa und LoRaWAN Workshop (Lutz Lisseck)&lt;br /&gt;
** Mai: Make-Rhein-Main Frankfurt bei Tatcraft&lt;br /&gt;
** Juni: Night-of-Science (Uni Frankfurt)&lt;br /&gt;
** September: Anschaffung 100W Co2-Laser &lt;br /&gt;
** Oktober: Kaffenachmittag (Matthias Neudeck / Peter Wiessenthaner)&lt;br /&gt;
** November: Start der Rakete mit Exciss &lt;br /&gt;
* 2019&lt;br /&gt;
** Januar: Lockpicker aufgenommen (Treffen einmal monatlich Freitags)&lt;br /&gt;
** Februar: Make Darmstadt &lt;br /&gt;
** März: Python Grundlagen (Lutz Lisseck)&lt;br /&gt;
** März: OpenCV Workshop (Lutz Lisseck)&lt;br /&gt;
** April: Laser-Regal&lt;br /&gt;
** Mai: Chill-Ecke umgestaltet&lt;br /&gt;
** Juni: Night-of-Science &lt;br /&gt;
** Oktober: Kaffenachmittag (Matthias Neudeck)&lt;br /&gt;
&lt;br /&gt;
* FPV-Auto: Start etwa Juni 2018 (Björn M., David Me., Alexander O., Lutz Lisseck, Volker Kühn)&lt;br /&gt;
&lt;br /&gt;
=== TOP 4 ===&lt;br /&gt;
Christin Schneider (Kassenprüfer) bestätigt die ordnungsgemäße Kassenführung für das Jahr 2017 und 2018. Am 31.12.2018 betrug der Kontostand 3433,58€. Sie schlägt die Entlastung des Schatzmeister vor. &lt;br /&gt;
&lt;br /&gt;
Die Versammlung beschließt mit 20 Ja, 0 Nein, 1 Enthaltung die Entlastung des Schatzmeisters (Lutz Lisseck). &lt;br /&gt;
&lt;br /&gt;
Der Schatzmeister erörtert die derzeitige Finanzlage.&lt;br /&gt;
Die Frage um die Grenze der Umsatzsteuerpflichtigkeit wurde eingebracht. Eine Info über die Rechtslage wird vom Schatzmeister eingeholt.&lt;br /&gt;
&lt;br /&gt;
=== TOP 5 ===&lt;br /&gt;
Shintaro Fujita stellt sich zur Wiederwahl als Schriftführer zur Verfügung.  &lt;br /&gt;
&lt;br /&gt;
Shintaro Fujita wird mit 20 Ja, 0 Nein, 1 Enthaltungen zum Schriftführer gewählt. Shintaro Fujita nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck stellt sich zur Wiederwahl als Schatzmeister zur Verfügung. &lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck wird mit 20 Ja, 0 Nein, 1 Enthaltungen zum Schatzmeister gewählt. Lutz Lisseck nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
Leandra Christine Schneider stellt sich zur Wiederwahl als neue Kassenprüferin zur Verfügung. &lt;br /&gt;
&lt;br /&gt;
Leandra Christine Schneider wird mit 20 Ja, 0 Nein, 1 Enthaltungen zum Kassenprüfer gewählt. Leandra Christine Schneider nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
=== TOP 6 ===&lt;br /&gt;
Lutz Lisseck erläutert die Mitgliedssituation. Der Verein hat derzeit 54 reguläre Mitglieder (2017: 42 Mitglieder).&lt;br /&gt;
&lt;br /&gt;
=== TOP 7 ===&lt;br /&gt;
Verschiedenes:&lt;br /&gt;
* Der Verein beteiligt sich nicht politisch&lt;br /&gt;
* Jedes ordentliche Mitglied darf den Verein nutzen, auch wenn die Absichten teilweise kommerziell sind&lt;br /&gt;
* Jedes ordentliche Mitglied darf den Verein nach außen repräsentieren, durch Vorträge, Publikationen etc. Zensur sollte nicht statt finden.&lt;br /&gt;
* Kommerzielles Sponsoring ist möglich&lt;br /&gt;
* Verein bleibt vorerst nicht gemeinnützig&lt;br /&gt;
* Parken: NICHT vor Eventhalle    &lt;br /&gt;
* Müllsituation Altpapier in lokale Tonnen, Restmüll muss zum Recyclinghof gebracht werden.&lt;br /&gt;
** Sortenreines Holz kann beim Schreiner Nebenan gegen Unkostenbeitrag oder von Christine entsorgt werden.&lt;br /&gt;
* Schlüsselsituation &lt;br /&gt;
** Mitglieder mit Schlüssel sind gebeten über die Liste zu informieren sobald sie absehen können, dass der Space and nicht-Regeltagen offen ist.&lt;br /&gt;
* zukünftige Aktionen / Wünsche?&lt;br /&gt;
** Ideensammlung für Workshops&lt;br /&gt;
*** CAD/Konstruieren (Shintaro mit FreeCAD/OpenSCAD)&lt;br /&gt;
*** Stickmaschine (alle Interessierten, Material mitbringen und Vorlagen erstellen)&lt;br /&gt;
*** COOP-Identity Workshop: Polo/T-Shirt mit logo (eventuell bestickt), Hackerspace Badge (für Veranstaltungen), Hackerspace Banner&lt;br /&gt;
** Ideensammlung für Mottotage&lt;br /&gt;
*** Lötkolben im ELab fertig bauen (David und andere)&lt;br /&gt;
*** 5 Achsen Fräse (Klaus, Christine, Phil)&lt;br /&gt;
*** Upgrade Laser im ELab ( Lüftersteuerung mit höherem Nachlauf, Lutz)&lt;br /&gt;
** Ideensammlung für Gemeinschaftsprojekte&lt;br /&gt;
*** Übergreifender &amp;quot;Cleanup&amp;quot; Day (Schubladeninhalte Photografieren &amp;amp; als Einleger in die Schublade)&lt;br /&gt;
*** Anbringung von Schildern mit den DOs/DONTs für das jeweilige Gerät&lt;br /&gt;
** Ideensammlung für Anschaffungen&lt;br /&gt;
*** Drehbank, Björn stellt Kontakt zu einer möglichen Quelle her.&lt;br /&gt;
*** Wiederbefüllen der Acrylglas Vorräte&lt;br /&gt;
* Verschiedenes&lt;br /&gt;
** 10 jähriges Vereinsjubiläum 20. August 2020 (Gründung laut Protokoll: 20.8.2010)&lt;br /&gt;
** Beitrag für temporäre (einige Tage) Nutzung des Space von Nicht-Mitgliedern: ~1 Monatsbeitrag&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck beendet die Versammlung um 21:20 Uhr&lt;br /&gt;
&lt;br /&gt;
[[Kategorie: Protokolle]]&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Protokoll_2019.11.04&amp;diff=10883</id>
		<title>Protokoll 2019.11.04</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Protokoll_2019.11.04&amp;diff=10883"/>
				<updated>2019-11-04T22:24:39Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: /* TOP 4 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== VORLÄUFIGES Protokoll der Jahresvollversammlung des Hackerspace-FFM e.V. ==&lt;br /&gt;
Datum: Montag den 04. November 2019&lt;br /&gt;
&lt;br /&gt;
Ort: Hackerspace-FFM e.V., Ludwig-Erhard-Str. 32, 61440 Oberursel (Taunus)&lt;br /&gt;
&lt;br /&gt;
Versammlungsbeginn: 20:00 Uhr&lt;br /&gt;
&lt;br /&gt;
Versammlungsleiter: Lutz Lisseck (Vorstand: Schatzmeister)&lt;br /&gt;
&lt;br /&gt;
Protokollführer: Leandra Christine Schneider&lt;br /&gt;
&lt;br /&gt;
=== Tagesordnung laut Einladung vom 03.10.2019 ===&lt;br /&gt;
# Wahl des Protokollführers, Feststellung der Beschlussfähigkeit&lt;br /&gt;
# Begrüßung&lt;br /&gt;
# Bericht des Vorstandes, Danksagung&lt;br /&gt;
# Bericht des Schatzmeisters, des Kassenprüfers und Entlastung des Schatzmeisters und Vorstandes&lt;br /&gt;
# Wiederwahl des Vorstandes&lt;br /&gt;
# Mitgliedssituation, mittelfristige Finanzierung des Vereins&lt;br /&gt;
# Verschiedenes&lt;br /&gt;
&lt;br /&gt;
=== TOP 1 ===&lt;br /&gt;
Lutz Lisseck eröffnet die Mitgliederversammlung, stellt die Satzungsgemäße Einberufung sowie die Beschlussfähigkeit fest. Leandra Schneider wird als Protokollführer festgelegt.&lt;br /&gt;
&lt;br /&gt;
=== TOP 2 ===&lt;br /&gt;
Lutz Lisseck begrüßt die Mitglieder.&lt;br /&gt;
&lt;br /&gt;
=== TOP 3 ===&lt;br /&gt;
Lutz Lisseck berichtet und bedankt sich über in der Vergangenheit durchgeführte Aktionen:&lt;br /&gt;
* 2017&lt;br /&gt;
** November: MikroEcke (Alexander O.)&lt;br /&gt;
* 2018&lt;br /&gt;
** Februar: LoRa und LoRaWAN Workshop (Lutz Lisseck)&lt;br /&gt;
** Mai: Make-Rhein-Main Frankfurt bei Tatcraft&lt;br /&gt;
** Juni: Night-of-Science (Uni Frankfurt)&lt;br /&gt;
** September: Anschaffung 100W Co2-Laser &lt;br /&gt;
** Oktober: Kaffenachmittag (Matthias Neudeck / Peter Wiessenthaner)&lt;br /&gt;
** November: Start der Rakete mit Exciss &lt;br /&gt;
* 2019&lt;br /&gt;
** Januar: Lockpicker aufgenommen (Treffen einmal monatlich Freitags)&lt;br /&gt;
** Februar: Make Darmstadt &lt;br /&gt;
** März: Python Grundlagen (Lutz Lisseck)&lt;br /&gt;
** März: OpenCV Workshop (Lutz Lisseck)&lt;br /&gt;
** April: Laser-Regal&lt;br /&gt;
** Mai: Chill-Ecke umgestaltet&lt;br /&gt;
** Juni: Night-of-Science &lt;br /&gt;
** Oktober: Kaffenachmittag (Matthias Neudeck)&lt;br /&gt;
&lt;br /&gt;
* FPV-Auto: Start etwa Juni 2018 (Björn M., David Me., Alexander O., Lutz Lisseck, Volker Kühn)&lt;br /&gt;
&lt;br /&gt;
=== TOP 4 ===&lt;br /&gt;
Christin Schneider (Kassenprüfer) bestätigt die ordnungsgemäße Kassenführung für das Jahr 2017 und 2018. Am 31.12.2018 betrug der Kontostand 3433,58€. Sie schlägt die Entlastung des Schatzmeister vor. &lt;br /&gt;
&lt;br /&gt;
Die Versammlung beschließt mit 20 Ja, 0 Nein, 1 Enthaltung die Entlastung des Schatzmeisters (Lutz Lisseck). &lt;br /&gt;
&lt;br /&gt;
Der Schatzmeister erörtert die derzeitige Finanzlage.&lt;br /&gt;
Die Frage um die Grenze der Umsatzsteuerpflichtigkeit wurde eingebracht. Eine Info über die Rechtslage wird vom Schatzmeister eingeholt.&lt;br /&gt;
&lt;br /&gt;
=== TOP 5 ===&lt;br /&gt;
Shintaro Fujita stellt sich zur Wiederwahl als Schriftführer zur Verfügung.  &lt;br /&gt;
&lt;br /&gt;
Shintaro Fujita wird mit 20 Ja, 0 Nein, 1 Enthaltungen zum Schriftführer gewählt. Shintaro Fujita nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck stellt sich zur Wiederwahl als Schatzmeister zur Verfügung. &lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck wird mit 20 Ja, 0 Nein, 1 Enthaltungen zum Schatzmeister gewählt. Lutz Lisseck nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
Leandra Christine Schneider stellt sich zur Wiederwahl als neue Kassenprüferin zur Verfügung. &lt;br /&gt;
&lt;br /&gt;
Leandra Christine Schneider wird mit 20 Ja, 0 Nein, 1 Enthaltungen zum Kassenprüfer gewählt. Leandra Christine Schneider nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
=== TOP 6 ===&lt;br /&gt;
Lutz Lisseck erläutert die Mitgliedssituation. Der Verein hat derzeit 54 reguläre Mitglieder (2017: 42 Mitglieder).&lt;br /&gt;
&lt;br /&gt;
=== TOP 7 ===&lt;br /&gt;
Verschiedenes:&lt;br /&gt;
* Der Verein beteiligt sich nicht politisch&lt;br /&gt;
* Jedes ordentliche Mitglied darf den Verein nutzen, auch wenn die Absichten teilweise kommerziell sind&lt;br /&gt;
* Jedes ordentliche Mitglied darf den Verein nach außen repräsentieren, durch Vorträge, Publikationen etc. Zensur sollte nicht statt finden.&lt;br /&gt;
* Kommerzielles Sponsoring ist möglich&lt;br /&gt;
* Verein bleibt vorerst nicht gemeinnützig&lt;br /&gt;
* Parken: NICHT vor Eventhalle    &lt;br /&gt;
* Müllsituation Altpapier in lokale Tonnen, Restmüll muss zum Recyclinghof gebracht werden.&lt;br /&gt;
** Sortenreines Holz kann beim Schreiner Nebenan gegen Unkostenbeitrag oder von Christine entsorgt werden.&lt;br /&gt;
* Schlüsselsituation &lt;br /&gt;
** Mitglieder mit Schlüssel sind gebeten über die Liste zu informieren sobald sie absehen können, dass der Space and nicht-Regeltagen offen ist.&lt;br /&gt;
* zukünftige Aktionen / Wünsche?&lt;br /&gt;
** Ideensammlung für Workshops&lt;br /&gt;
*** CAD/Konstruieren (Shintaro mit FreeCAD/OpenSCAD)&lt;br /&gt;
*** Stickmaschine (alle Interessierten, Material mitbringen und Vorlagen erstellen)&lt;br /&gt;
*** COOP-Identity Workshop: Polo/T-Shirt mit logo (eventuell bestickt), Hackerspace Badge (für Veranstaltungen), Hackerspace Banner&lt;br /&gt;
** Ideensammlung für Mottotage&lt;br /&gt;
*** Lötkolben im ELab fertig bauen (David und andere)&lt;br /&gt;
*** 5 Achsen Fräse (Klaus, Christine, Phil)&lt;br /&gt;
*** Upgrade Laser im ELab ( Lüftersteuerung mit höherem Nachlauf, Lutz)&lt;br /&gt;
** Ideensammlung für Gemeinschaftsprojekte&lt;br /&gt;
*** Übergreifender &amp;quot;Cleanup&amp;quot; Day (Schubladeninhalte Photografieren &amp;amp; als Einleger in die Schublade)&lt;br /&gt;
*** Anbringung von Schildern mit den DOs/DONTs für das jeweilige Gerät&lt;br /&gt;
** Ideensammlung für Anschaffungen&lt;br /&gt;
*** Drehbank, Björn stellt Kontakt zu einer möglichen Quelle her.&lt;br /&gt;
*** Wiederbefüllen der Acrylglas Vorräte&lt;br /&gt;
* Verschiedenes&lt;br /&gt;
** 10 jähriges Vereinsjubiläum 20. August 2020 (Gründung laut Protokoll: 20.8.2010)&lt;br /&gt;
** Beitrag für temporäre (einige Tage) Nutzung des Space von Nicht-Mitgliedern: ~1 Monatsbeitrag&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck beendet die Versammlung um 21:20 Uhr&lt;br /&gt;
&lt;br /&gt;
[[Kategorie: Protokolle]]&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Protokoll_2019.11.04&amp;diff=10882</id>
		<title>Protokoll 2019.11.04</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Protokoll_2019.11.04&amp;diff=10882"/>
				<updated>2019-11-04T22:23:40Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: /* TOP 7 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== VORLÄUFIGES Protokoll der Jahresvollversammlung des Hackerspace-FFM e.V. ==&lt;br /&gt;
Datum: Montag den 04. November 2019&lt;br /&gt;
&lt;br /&gt;
Ort: Hackerspace-FFM e.V., Ludwig-Erhard-Str. 32, 61440 Oberursel (Taunus)&lt;br /&gt;
&lt;br /&gt;
Versammlungsbeginn: 20:00 Uhr&lt;br /&gt;
&lt;br /&gt;
Versammlungsleiter: Lutz Lisseck (Vorstand: Schatzmeister)&lt;br /&gt;
&lt;br /&gt;
Protokollführer: Leandra Christine Schneider&lt;br /&gt;
&lt;br /&gt;
=== Tagesordnung laut Einladung vom 03.10.2019 ===&lt;br /&gt;
# Wahl des Protokollführers, Feststellung der Beschlussfähigkeit&lt;br /&gt;
# Begrüßung&lt;br /&gt;
# Bericht des Vorstandes, Danksagung&lt;br /&gt;
# Bericht des Schatzmeisters, des Kassenprüfers und Entlastung des Schatzmeisters und Vorstandes&lt;br /&gt;
# Wiederwahl des Vorstandes&lt;br /&gt;
# Mitgliedssituation, mittelfristige Finanzierung des Vereins&lt;br /&gt;
# Verschiedenes&lt;br /&gt;
&lt;br /&gt;
=== TOP 1 ===&lt;br /&gt;
Lutz Lisseck eröffnet die Mitgliederversammlung, stellt die Satzungsgemäße Einberufung sowie die Beschlussfähigkeit fest. Leandra Schneider wird als Protokollführer festgelegt.&lt;br /&gt;
&lt;br /&gt;
=== TOP 2 ===&lt;br /&gt;
Lutz Lisseck begrüßt die Mitglieder.&lt;br /&gt;
&lt;br /&gt;
=== TOP 3 ===&lt;br /&gt;
Lutz Lisseck berichtet und bedankt sich über in der Vergangenheit durchgeführte Aktionen:&lt;br /&gt;
* 2017&lt;br /&gt;
** November: MikroEcke (Alexander O.)&lt;br /&gt;
* 2018&lt;br /&gt;
** Februar: LoRa und LoRaWAN Workshop (Lutz Lisseck)&lt;br /&gt;
** Mai: Make-Rhein-Main Frankfurt bei Tatcraft&lt;br /&gt;
** Juni: Night-of-Science (Uni Frankfurt)&lt;br /&gt;
** September: Anschaffung 100W Co2-Laser &lt;br /&gt;
** Oktober: Kaffenachmittag (Matthias Neudeck / Peter Wiessenthaner)&lt;br /&gt;
** November: Start der Rakete mit Exciss &lt;br /&gt;
* 2019&lt;br /&gt;
** Januar: Lockpicker aufgenommen (Treffen einmal monatlich Freitags)&lt;br /&gt;
** Februar: Make Darmstadt &lt;br /&gt;
** März: Python Grundlagen (Lutz Lisseck)&lt;br /&gt;
** März: OpenCV Workshop (Lutz Lisseck)&lt;br /&gt;
** April: Laser-Regal&lt;br /&gt;
** Mai: Chill-Ecke umgestaltet&lt;br /&gt;
** Juni: Night-of-Science &lt;br /&gt;
** Oktober: Kaffenachmittag (Matthias Neudeck)&lt;br /&gt;
&lt;br /&gt;
* FPV-Auto: Start etwa Juni 2018 (Björn M., David Me., Alexander O., Lutz Lisseck, Volker Kühn)&lt;br /&gt;
&lt;br /&gt;
=== TOP 4 ===&lt;br /&gt;
Christin Schneider (Kassenprüfer) bestätigt die ordnungsgemäße Kassenführung für das Jahr 2017 und 2018. Am 31.12.2018 betrug der Kontostand 3433,58€. Sie schlägt die Entlastung des Schatzmeister vor. &lt;br /&gt;
&lt;br /&gt;
Die Versammlung beschließt mit 20 Ja, 0 Nein, 1 Enthaltung die Entlastung des Schatzmeisters (Lutz Lisseck). &lt;br /&gt;
&lt;br /&gt;
Der Schatzmeister erörtert die derzeitige Finanzlage.&lt;br /&gt;
&lt;br /&gt;
=== TOP 5 ===&lt;br /&gt;
Shintaro Fujita stellt sich zur Wiederwahl als Schriftführer zur Verfügung.  &lt;br /&gt;
&lt;br /&gt;
Shintaro Fujita wird mit 20 Ja, 0 Nein, 1 Enthaltungen zum Schriftführer gewählt. Shintaro Fujita nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck stellt sich zur Wiederwahl als Schatzmeister zur Verfügung. &lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck wird mit 20 Ja, 0 Nein, 1 Enthaltungen zum Schatzmeister gewählt. Lutz Lisseck nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
Leandra Christine Schneider stellt sich zur Wiederwahl als neue Kassenprüferin zur Verfügung. &lt;br /&gt;
&lt;br /&gt;
Leandra Christine Schneider wird mit 20 Ja, 0 Nein, 1 Enthaltungen zum Kassenprüfer gewählt. Leandra Christine Schneider nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
=== TOP 6 ===&lt;br /&gt;
Lutz Lisseck erläutert die Mitgliedssituation. Der Verein hat derzeit 54 reguläre Mitglieder (2017: 42 Mitglieder).&lt;br /&gt;
&lt;br /&gt;
=== TOP 7 ===&lt;br /&gt;
Verschiedenes:&lt;br /&gt;
* Der Verein beteiligt sich nicht politisch&lt;br /&gt;
* Jedes ordentliche Mitglied darf den Verein nutzen, auch wenn die Absichten teilweise kommerziell sind&lt;br /&gt;
* Jedes ordentliche Mitglied darf den Verein nach außen repräsentieren, durch Vorträge, Publikationen etc. Zensur sollte nicht statt finden.&lt;br /&gt;
* Kommerzielles Sponsoring ist möglich&lt;br /&gt;
* Verein bleibt vorerst nicht gemeinnützig&lt;br /&gt;
* Parken: NICHT vor Eventhalle    &lt;br /&gt;
* Müllsituation Altpapier in lokale Tonnen, Restmüll muss zum Recyclinghof gebracht werden.&lt;br /&gt;
** Sortenreines Holz kann beim Schreiner Nebenan gegen Unkostenbeitrag oder von Christine entsorgt werden.&lt;br /&gt;
* Schlüsselsituation &lt;br /&gt;
** Mitglieder mit Schlüssel sind gebeten über die Liste zu informieren sobald sie absehen können, dass der Space and nicht-Regeltagen offen ist.&lt;br /&gt;
* zukünftige Aktionen / Wünsche?&lt;br /&gt;
** Ideensammlung für Workshops&lt;br /&gt;
*** CAD/Konstruieren (Shintaro mit FreeCAD/OpenSCAD)&lt;br /&gt;
*** Stickmaschine (alle Interessierten, Material mitbringen und Vorlagen erstellen)&lt;br /&gt;
*** COOP-Identity Workshop: Polo/T-Shirt mit logo (eventuell bestickt), Hackerspace Badge (für Veranstaltungen), Hackerspace Banner&lt;br /&gt;
** Ideensammlung für Mottotage&lt;br /&gt;
*** Lötkolben im ELab fertig bauen (David und andere)&lt;br /&gt;
*** 5 Achsen Fräse (Klaus, Christine, Phil)&lt;br /&gt;
*** Upgrade Laser im ELab ( Lüftersteuerung mit höherem Nachlauf, Lutz)&lt;br /&gt;
** Ideensammlung für Gemeinschaftsprojekte&lt;br /&gt;
*** Übergreifender &amp;quot;Cleanup&amp;quot; Day (Schubladeninhalte Photografieren &amp;amp; als Einleger in die Schublade)&lt;br /&gt;
*** Anbringung von Schildern mit den DOs/DONTs für das jeweilige Gerät&lt;br /&gt;
** Ideensammlung für Anschaffungen&lt;br /&gt;
*** Drehbank, Björn stellt Kontakt zu einer möglichen Quelle her.&lt;br /&gt;
*** Wiederbefüllen der Acrylglas Vorräte&lt;br /&gt;
* Verschiedenes&lt;br /&gt;
** 10 jähriges Vereinsjubiläum 20. August 2020 (Gründung laut Protokoll: 20.8.2010)&lt;br /&gt;
** Beitrag für temporäre (einige Tage) Nutzung des Space von Nicht-Mitgliedern: ~1 Monatsbeitrag&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck beendet die Versammlung um 21:20 Uhr&lt;br /&gt;
&lt;br /&gt;
[[Kategorie: Protokolle]]&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Protokoll_2019.11.04&amp;diff=10881</id>
		<title>Protokoll 2019.11.04</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Protokoll_2019.11.04&amp;diff=10881"/>
				<updated>2019-11-04T20:28:03Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: /* TOP 7 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== VORLÄUFIGES Protokoll der Jahresvollversammlung des Hackerspace-FFM e.V. ==&lt;br /&gt;
Datum: Montag den 04. November 2019&lt;br /&gt;
&lt;br /&gt;
Ort: Hackerspace-FFM e.V., Ludwig-Erhard-Str. 32, 61440 Oberursel (Taunus)&lt;br /&gt;
&lt;br /&gt;
Versammlungsbeginn: 20:00 Uhr&lt;br /&gt;
&lt;br /&gt;
Versammlungsleiter: Lutz Lisseck (Vorstand: Schatzmeister)&lt;br /&gt;
&lt;br /&gt;
Protokollführer: Leandra Christine Schneider&lt;br /&gt;
&lt;br /&gt;
=== Tagesordnung laut Einladung vom 03.10.2019 ===&lt;br /&gt;
# Wahl des Protokollführers, Feststellung der Beschlussfähigkeit&lt;br /&gt;
# Begrüßung&lt;br /&gt;
# Bericht des Vorstandes, Danksagung&lt;br /&gt;
# Bericht des Schatzmeisters, des Kassenprüfers und Entlastung des Schatzmeisters und Vorstandes&lt;br /&gt;
# Wiederwahl des Vorstandes&lt;br /&gt;
# Mitgliedssituation, mittelfristige Finanzierung des Vereins&lt;br /&gt;
# Verschiedenes&lt;br /&gt;
&lt;br /&gt;
=== TOP 1 ===&lt;br /&gt;
Lutz Lisseck eröffnet die Mitgliederversammlung, stellt die Satzungsgemäße Einberufung sowie die Beschlussfähigkeit fest. Leandra Schneider wird als Protokollführer festgelegt.&lt;br /&gt;
&lt;br /&gt;
=== TOP 2 ===&lt;br /&gt;
Lutz Lisseck begrüßt die Mitglieder.&lt;br /&gt;
&lt;br /&gt;
=== TOP 3 ===&lt;br /&gt;
Lutz Lisseck berichtet und bedankt sich über in der Vergangenheit durchgeführte Aktionen:&lt;br /&gt;
* 2017&lt;br /&gt;
** November: MikroEcke (Alexander O.)&lt;br /&gt;
* 2018&lt;br /&gt;
** Februar: LoRa und LoRaWAN Workshop (Lutz Lisseck)&lt;br /&gt;
** Mai: Make-Rhein-Main Frankfurt bei Tatcraft&lt;br /&gt;
** Juni: Night-of-Science (Uni Frankfurt)&lt;br /&gt;
** September: Anschaffung 100W Co2-Laser &lt;br /&gt;
** Oktober: Kaffenachmittag (Matthias Neudeck / Peter Wiessenthaner)&lt;br /&gt;
** November: Start der Rakete mit Exciss &lt;br /&gt;
* 2019&lt;br /&gt;
** Januar: Lockpicker aufgenommen (Treffen einmal monatlich Freitags)&lt;br /&gt;
** Februar: Make Darmstadt &lt;br /&gt;
** März: Python Grundlagen (Lutz Lisseck)&lt;br /&gt;
** März: OpenCV Workshop (Lutz Lisseck)&lt;br /&gt;
** April: Laser-Regal&lt;br /&gt;
** Mai: Chill-Ecke umgestaltet&lt;br /&gt;
** Juni: Night-of-Science &lt;br /&gt;
** Oktober: Kaffenachmittag (Matthias Neudeck)&lt;br /&gt;
&lt;br /&gt;
* FPV-Auto: Start etwa Juni 2018 (Björn M., David Me., Alexander O., Lutz Lisseck, Volker Kühn)&lt;br /&gt;
&lt;br /&gt;
=== TOP 4 ===&lt;br /&gt;
Christin Schneider (Kassenprüfer) bestätigt die ordnungsgemäße Kassenführung für das Jahr 2017 und 2018. Am 31.12.2018 betrug der Kontostand 3433,58€. Sie schlägt die Entlastung des Schatzmeister vor. &lt;br /&gt;
&lt;br /&gt;
Die Versammlung beschließt mit 20 Ja, 0 Nein, 1 Enthaltung die Entlastung des Schatzmeisters (Lutz Lisseck). &lt;br /&gt;
&lt;br /&gt;
Der Schatzmeister erörtert die derzeitige Finanzlage.&lt;br /&gt;
&lt;br /&gt;
=== TOP 5 ===&lt;br /&gt;
Shintaro Fujita stellt sich zur Wiederwahl als Schriftführer zur Verfügung.  &lt;br /&gt;
&lt;br /&gt;
Shintaro Fujita wird mit 20 Ja, 0 Nein, 1 Enthaltungen zum Schriftführer gewählt. Shintaro Fujita nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck stellt sich zur Wiederwahl als Schatzmeister zur Verfügung. &lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck wird mit 20 Ja, 0 Nein, 1 Enthaltungen zum Schatzmeister gewählt. Lutz Lisseck nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
Leandra Christine Schneider stellt sich zur Wiederwahl als neue Kassenprüferin zur Verfügung. &lt;br /&gt;
&lt;br /&gt;
Leandra Christine Schneider wird mit 20 Ja, 0 Nein, 1 Enthaltungen zum Kassenprüfer gewählt. Leandra Christine Schneider nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
=== TOP 6 ===&lt;br /&gt;
Lutz Lisseck erläutert die Mitgliedssituation. Der Verein hat derzeit 54 reguläre Mitglieder (2017: 42 Mitglieder).&lt;br /&gt;
&lt;br /&gt;
=== TOP 7 ===&lt;br /&gt;
Verschiedenes:&lt;br /&gt;
* Der Verein beteiligt sich nicht politisch&lt;br /&gt;
* Jedes ordentliche Mitglied darf den Verein nutzen, auch wenn die Absichten teilweise kommerziell sind&lt;br /&gt;
* Jedes ordentliche Mitglied darf den Verein nach außen repräsentieren, durch Vorträge, Publikationen etc. Zensur sollte nicht statt finden.&lt;br /&gt;
* Kommerzielles Sponsoring ist möglich&lt;br /&gt;
* Verein bleibt vorerst nicht gemeinnützig&lt;br /&gt;
* Parken: NICHT vor Eventhalle    &lt;br /&gt;
* Müllsituation Altpapier in lokale Tonnen, Restmüll muss zum Recyclinghof gebracht werden.&lt;br /&gt;
* Schlüsselsituation &lt;br /&gt;
* zukünftige Aktionen / Wünsche?&lt;br /&gt;
** Ideensammlung für Workshops&lt;br /&gt;
** Ideensammlung für Mottotage&lt;br /&gt;
** Ideensammlung für Gemeinschaftsprojekte&lt;br /&gt;
** Ideensammlung für Anschaffungen&lt;br /&gt;
* 10 jähriges Vereinsjubiläum 20. August 2020 (Gründung laut Protokoll: 20.8.2010)&lt;br /&gt;
* Anschaffungen&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck beendet die Versammlung um 21:20 Uhr&lt;br /&gt;
&lt;br /&gt;
[[Kategorie: Protokolle]]&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Protokoll_2019.11.04&amp;diff=10880</id>
		<title>Protokoll 2019.11.04</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Protokoll_2019.11.04&amp;diff=10880"/>
				<updated>2019-11-04T20:27:35Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: /* TOP 5 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== VORLÄUFIGES Protokoll der Jahresvollversammlung des Hackerspace-FFM e.V. ==&lt;br /&gt;
Datum: Montag den 04. November 2019&lt;br /&gt;
&lt;br /&gt;
Ort: Hackerspace-FFM e.V., Ludwig-Erhard-Str. 32, 61440 Oberursel (Taunus)&lt;br /&gt;
&lt;br /&gt;
Versammlungsbeginn: 20:00 Uhr&lt;br /&gt;
&lt;br /&gt;
Versammlungsleiter: Lutz Lisseck (Vorstand: Schatzmeister)&lt;br /&gt;
&lt;br /&gt;
Protokollführer: Leandra Christine Schneider&lt;br /&gt;
&lt;br /&gt;
=== Tagesordnung laut Einladung vom 03.10.2019 ===&lt;br /&gt;
# Wahl des Protokollführers, Feststellung der Beschlussfähigkeit&lt;br /&gt;
# Begrüßung&lt;br /&gt;
# Bericht des Vorstandes, Danksagung&lt;br /&gt;
# Bericht des Schatzmeisters, des Kassenprüfers und Entlastung des Schatzmeisters und Vorstandes&lt;br /&gt;
# Wiederwahl des Vorstandes&lt;br /&gt;
# Mitgliedssituation, mittelfristige Finanzierung des Vereins&lt;br /&gt;
# Verschiedenes&lt;br /&gt;
&lt;br /&gt;
=== TOP 1 ===&lt;br /&gt;
Lutz Lisseck eröffnet die Mitgliederversammlung, stellt die Satzungsgemäße Einberufung sowie die Beschlussfähigkeit fest. Leandra Schneider wird als Protokollführer festgelegt.&lt;br /&gt;
&lt;br /&gt;
=== TOP 2 ===&lt;br /&gt;
Lutz Lisseck begrüßt die Mitglieder.&lt;br /&gt;
&lt;br /&gt;
=== TOP 3 ===&lt;br /&gt;
Lutz Lisseck berichtet und bedankt sich über in der Vergangenheit durchgeführte Aktionen:&lt;br /&gt;
* 2017&lt;br /&gt;
** November: MikroEcke (Alexander O.)&lt;br /&gt;
* 2018&lt;br /&gt;
** Februar: LoRa und LoRaWAN Workshop (Lutz Lisseck)&lt;br /&gt;
** Mai: Make-Rhein-Main Frankfurt bei Tatcraft&lt;br /&gt;
** Juni: Night-of-Science (Uni Frankfurt)&lt;br /&gt;
** September: Anschaffung 100W Co2-Laser &lt;br /&gt;
** Oktober: Kaffenachmittag (Matthias Neudeck / Peter Wiessenthaner)&lt;br /&gt;
** November: Start der Rakete mit Exciss &lt;br /&gt;
* 2019&lt;br /&gt;
** Januar: Lockpicker aufgenommen (Treffen einmal monatlich Freitags)&lt;br /&gt;
** Februar: Make Darmstadt &lt;br /&gt;
** März: Python Grundlagen (Lutz Lisseck)&lt;br /&gt;
** März: OpenCV Workshop (Lutz Lisseck)&lt;br /&gt;
** April: Laser-Regal&lt;br /&gt;
** Mai: Chill-Ecke umgestaltet&lt;br /&gt;
** Juni: Night-of-Science &lt;br /&gt;
** Oktober: Kaffenachmittag (Matthias Neudeck)&lt;br /&gt;
&lt;br /&gt;
* FPV-Auto: Start etwa Juni 2018 (Björn M., David Me., Alexander O., Lutz Lisseck, Volker Kühn)&lt;br /&gt;
&lt;br /&gt;
=== TOP 4 ===&lt;br /&gt;
Christin Schneider (Kassenprüfer) bestätigt die ordnungsgemäße Kassenführung für das Jahr 2017 und 2018. Am 31.12.2018 betrug der Kontostand 3433,58€. Sie schlägt die Entlastung des Schatzmeister vor. &lt;br /&gt;
&lt;br /&gt;
Die Versammlung beschließt mit 20 Ja, 0 Nein, 1 Enthaltung die Entlastung des Schatzmeisters (Lutz Lisseck). &lt;br /&gt;
&lt;br /&gt;
Der Schatzmeister erörtert die derzeitige Finanzlage.&lt;br /&gt;
&lt;br /&gt;
=== TOP 5 ===&lt;br /&gt;
Shintaro Fujita stellt sich zur Wiederwahl als Schriftführer zur Verfügung.  &lt;br /&gt;
&lt;br /&gt;
Shintaro Fujita wird mit 20 Ja, 0 Nein, 1 Enthaltungen zum Schriftführer gewählt. Shintaro Fujita nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck stellt sich zur Wiederwahl als Schatzmeister zur Verfügung. &lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck wird mit 20 Ja, 0 Nein, 1 Enthaltungen zum Schatzmeister gewählt. Lutz Lisseck nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
Leandra Christine Schneider stellt sich zur Wiederwahl als neue Kassenprüferin zur Verfügung. &lt;br /&gt;
&lt;br /&gt;
Leandra Christine Schneider wird mit 20 Ja, 0 Nein, 1 Enthaltungen zum Kassenprüfer gewählt. Leandra Christine Schneider nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
=== TOP 6 ===&lt;br /&gt;
Lutz Lisseck erläutert die Mitgliedssituation. Der Verein hat derzeit 54 reguläre Mitglieder (2017: 42 Mitglieder).&lt;br /&gt;
&lt;br /&gt;
=== TOP 7 ===&lt;br /&gt;
Verschiedenes:&lt;br /&gt;
* Der Verein beteiligt sich nicht politisch&lt;br /&gt;
* Jedes ordentliche Mitglied darf den Verein nutzen, auch wenn die Absichten teilweise kommerziell sind&lt;br /&gt;
* Jedes ordentliche Mitglied darf den Verein nach außen repräsentieren, durch Vorträge, Publikationen etc. Zensur sollte nicht statt finden.&lt;br /&gt;
* Kommerzielles Sponsoring ist möglich&lt;br /&gt;
* Verein bleibt vorerst nicht gemeinnützig&lt;br /&gt;
* Parken: NICHT vor Eventhalle    &lt;br /&gt;
* Müllsituation Altpapier in lokale Tonnen, Restmüll muss zum Recyclinghof gebracht werden.&lt;br /&gt;
* Schlüsselsituation &lt;br /&gt;
* zukünftige Aktionen / Wünsche?&lt;br /&gt;
** Ideensammlung für Workshops&lt;br /&gt;
** Ideensammlung für Mottotage&lt;br /&gt;
** Ideensammlung für Gemeinschaftsprojekte&lt;br /&gt;
** Ideensammlung für Anschaffungen&lt;br /&gt;
* 10 jähriges Vereinsjubiläum 20. August 2020 (Gründung laut Protokoll: 20.8.2010)&lt;br /&gt;
* Anschaffungen&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck beendet die Versammlung um xx:xx Uhr&lt;br /&gt;
&lt;br /&gt;
[[Kategorie: Protokolle]]&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Protokoll_2019.11.04&amp;diff=10879</id>
		<title>Protokoll 2019.11.04</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Protokoll_2019.11.04&amp;diff=10879"/>
				<updated>2019-11-04T20:26:49Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: /* TOP 4 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== VORLÄUFIGES Protokoll der Jahresvollversammlung des Hackerspace-FFM e.V. ==&lt;br /&gt;
Datum: Montag den 04. November 2019&lt;br /&gt;
&lt;br /&gt;
Ort: Hackerspace-FFM e.V., Ludwig-Erhard-Str. 32, 61440 Oberursel (Taunus)&lt;br /&gt;
&lt;br /&gt;
Versammlungsbeginn: 20:00 Uhr&lt;br /&gt;
&lt;br /&gt;
Versammlungsleiter: Lutz Lisseck (Vorstand: Schatzmeister)&lt;br /&gt;
&lt;br /&gt;
Protokollführer: Leandra Christine Schneider&lt;br /&gt;
&lt;br /&gt;
=== Tagesordnung laut Einladung vom 03.10.2019 ===&lt;br /&gt;
# Wahl des Protokollführers, Feststellung der Beschlussfähigkeit&lt;br /&gt;
# Begrüßung&lt;br /&gt;
# Bericht des Vorstandes, Danksagung&lt;br /&gt;
# Bericht des Schatzmeisters, des Kassenprüfers und Entlastung des Schatzmeisters und Vorstandes&lt;br /&gt;
# Wiederwahl des Vorstandes&lt;br /&gt;
# Mitgliedssituation, mittelfristige Finanzierung des Vereins&lt;br /&gt;
# Verschiedenes&lt;br /&gt;
&lt;br /&gt;
=== TOP 1 ===&lt;br /&gt;
Lutz Lisseck eröffnet die Mitgliederversammlung, stellt die Satzungsgemäße Einberufung sowie die Beschlussfähigkeit fest. Leandra Schneider wird als Protokollführer festgelegt.&lt;br /&gt;
&lt;br /&gt;
=== TOP 2 ===&lt;br /&gt;
Lutz Lisseck begrüßt die Mitglieder.&lt;br /&gt;
&lt;br /&gt;
=== TOP 3 ===&lt;br /&gt;
Lutz Lisseck berichtet und bedankt sich über in der Vergangenheit durchgeführte Aktionen:&lt;br /&gt;
* 2017&lt;br /&gt;
** November: MikroEcke (Alexander O.)&lt;br /&gt;
* 2018&lt;br /&gt;
** Februar: LoRa und LoRaWAN Workshop (Lutz Lisseck)&lt;br /&gt;
** Mai: Make-Rhein-Main Frankfurt bei Tatcraft&lt;br /&gt;
** Juni: Night-of-Science (Uni Frankfurt)&lt;br /&gt;
** September: Anschaffung 100W Co2-Laser &lt;br /&gt;
** Oktober: Kaffenachmittag (Matthias Neudeck / Peter Wiessenthaner)&lt;br /&gt;
** November: Start der Rakete mit Exciss &lt;br /&gt;
* 2019&lt;br /&gt;
** Januar: Lockpicker aufgenommen (Treffen einmal monatlich Freitags)&lt;br /&gt;
** Februar: Make Darmstadt &lt;br /&gt;
** März: Python Grundlagen (Lutz Lisseck)&lt;br /&gt;
** März: OpenCV Workshop (Lutz Lisseck)&lt;br /&gt;
** April: Laser-Regal&lt;br /&gt;
** Mai: Chill-Ecke umgestaltet&lt;br /&gt;
** Juni: Night-of-Science &lt;br /&gt;
** Oktober: Kaffenachmittag (Matthias Neudeck)&lt;br /&gt;
&lt;br /&gt;
* FPV-Auto: Start etwa Juni 2018 (Björn M., David Me., Alexander O., Lutz Lisseck, Volker Kühn)&lt;br /&gt;
&lt;br /&gt;
=== TOP 4 ===&lt;br /&gt;
Christin Schneider (Kassenprüfer) bestätigt die ordnungsgemäße Kassenführung für das Jahr 2017 und 2018. Am 31.12.2018 betrug der Kontostand 3433,58€. Sie schlägt die Entlastung des Schatzmeister vor. &lt;br /&gt;
&lt;br /&gt;
Die Versammlung beschließt mit 20 Ja, 0 Nein, 1 Enthaltung die Entlastung des Schatzmeisters (Lutz Lisseck). &lt;br /&gt;
&lt;br /&gt;
Der Schatzmeister erörtert die derzeitige Finanzlage.&lt;br /&gt;
&lt;br /&gt;
=== TOP 5 ===&lt;br /&gt;
Shintaro Fujita stellt sich zur Wiederwahl als Schriftführer zur Verfügung.  &lt;br /&gt;
&lt;br /&gt;
Shintaro Fujita wird mit xx Ja, xx Nein, xx Enthaltungen zum Schriftführer gewählt. Shintaro Fujita nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck stellt sich zur Wiederwahl als Schatzmeister zur Verfügung. &lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck wird mit xx Ja, xx Nein, xx Enthaltungen zum Schatzmeister gewählt. Lutz Lisseck nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
Leandra Christine Schneider stellt sich zur Wiederwahl als neue Kassenprüferin zur Verfügung. &lt;br /&gt;
&lt;br /&gt;
Leandra Christine Schneider wird mit xx Ja, xx Nein, xx Enthaltungen zum Kassenprüfer gewählt. Leandra Christine Schneider nimmt die Wahl an.&lt;br /&gt;
&lt;br /&gt;
=== TOP 6 ===&lt;br /&gt;
Lutz Lisseck erläutert die Mitgliedssituation. Der Verein hat derzeit 54 reguläre Mitglieder (2017: 42 Mitglieder).&lt;br /&gt;
&lt;br /&gt;
=== TOP 7 ===&lt;br /&gt;
Verschiedenes:&lt;br /&gt;
* Der Verein beteiligt sich nicht politisch&lt;br /&gt;
* Jedes ordentliche Mitglied darf den Verein nutzen, auch wenn die Absichten teilweise kommerziell sind&lt;br /&gt;
* Jedes ordentliche Mitglied darf den Verein nach außen repräsentieren, durch Vorträge, Publikationen etc. Zensur sollte nicht statt finden.&lt;br /&gt;
* Kommerzielles Sponsoring ist möglich&lt;br /&gt;
* Verein bleibt vorerst nicht gemeinnützig&lt;br /&gt;
* Parken: NICHT vor Eventhalle    &lt;br /&gt;
* Müllsituation Altpapier in lokale Tonnen, Restmüll muss zum Recyclinghof gebracht werden.&lt;br /&gt;
* Schlüsselsituation &lt;br /&gt;
* zukünftige Aktionen / Wünsche?&lt;br /&gt;
** Ideensammlung für Workshops&lt;br /&gt;
** Ideensammlung für Mottotage&lt;br /&gt;
** Ideensammlung für Gemeinschaftsprojekte&lt;br /&gt;
** Ideensammlung für Anschaffungen&lt;br /&gt;
* 10 jähriges Vereinsjubiläum 20. August 2020 (Gründung laut Protokoll: 20.8.2010)&lt;br /&gt;
* Anschaffungen&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lutz Lisseck beendet die Versammlung um xx:xx Uhr&lt;br /&gt;
&lt;br /&gt;
[[Kategorie: Protokolle]]&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=OpenCV_mit_Python&amp;diff=10508</id>
		<title>OpenCV mit Python</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=OpenCV_mit_Python&amp;diff=10508"/>
				<updated>2019-03-31T19:28:50Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installation =&lt;br /&gt;
Nach Update auf Pycharm 2019.1 kann es zu Problemen mit ALtGr+[ etc. kommen&lt;br /&gt;
&lt;br /&gt;
Workaround: In PyCharm click Ctrl + Shift + A. Then write registry and click on it. Find actionSystem.fix.alt.gr and uncheck it.&lt;br /&gt;
&lt;br /&gt;
== Raspberry Pi ==&lt;br /&gt;
&lt;br /&gt;
=== OpenCV Installation ===&lt;br /&gt;
* Installiere eine aktuelle Version mit Allem von [https://www.raspberrypi.org/downloads/raspbian/ Raspbian] auf die SD-Karte, richte alles ein, update das System via:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
sudo apt update &amp;amp;&amp;amp; sudo apt upgrade -y&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
* Installiere alles Mögliche nach was OpenCV so braucht (alles muss in eine Zeile):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt install libatlas3-base libsz2 libharfbuzz0b libtiff5 libjasper1 libilmbase12 libopenexr22 libilmbase12 libgstreamer1.0-0 libavcodec57 libavformat57 libavutil55 libswscale4 libqtgui4 libqt4-test libqtcore4 libwebp6&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Installiere dann OpenCV (und falls es fehlt numpy) via pip3, hier als root, in der fettesten Geschmacksrichtung:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
sudo pip3 install opencv-contrib-python numpy &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
* Teste ob numpy und opencv richtig installiert sind. Öffne dazu &amp;lt;code&amp;gt;python3&amp;lt;/code&amp;gt; auf der Konsole und probiere aus, ob die beiden folgenden Befehle kein Fehler ausgeben: &lt;br /&gt;
** &amp;lt;code&amp;gt;import numpy&amp;lt;/code&amp;gt;&lt;br /&gt;
** &amp;lt;code&amp;gt;import cv2&amp;lt;/code&amp;gt;&lt;br /&gt;
** &amp;lt;code&amp;gt;quit()&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Wenn beim import cv2 Fehlermeldungen angezeigt werden, hilft es folgende libs zu installieren:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
sudo apt-get install libcblas-dev&lt;br /&gt;
sudo apt-get install libhdf5-dev&lt;br /&gt;
sudo apt-get install libhdf5-serial-dev&lt;br /&gt;
sudo apt-get install libatlas-base-dev&lt;br /&gt;
sudo apt-get install libjasper-dev &lt;br /&gt;
sudo apt-get install libqtgui4 &lt;br /&gt;
sudo apt-get install libqt4-test&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Tipp: Als IDE unter Raspbian für Python3 ist '''Thonny''' ein Versuch wert:&lt;br /&gt;
** Installation am besten via pip: &amp;lt;code&amp;gt;sudo pip3 install thonny&amp;lt;/code&amp;gt;&lt;br /&gt;
** Nach dem starten von Thonny unter &amp;quot;Tools-&amp;gt;Options...-&amp;gt;General&amp;quot; den UI mode auf &amp;quot;expert&amp;quot; stellen, bei der Gelegenheit kann auch gleich ein dunkles Theme eingestellt werden, dann sieht es auch gut aus.&lt;br /&gt;
** Das Ding kann Variablen anschauen, Breakpoints setzen, Variabelninhalte anzeigen und Pakete installieren und zeigt Vorschläge zum sauberen Programmieren - also ein Ersatz für das PyCharm, was unter Raspberry nicht läuft.&lt;br /&gt;
&lt;br /&gt;
=== Kamera Installation ===&lt;br /&gt;
* Aktiviere die Kamera: &amp;lt;code&amp;gt;sudo raspi-config&amp;lt;/code&amp;gt;, dann unter &amp;quot;5 Interfacing Option&amp;quot; die Kamera aktivieren. Tool beenden über &amp;quot;Finish&amp;quot;, Raspberry neu starten &amp;lt;code&amp;gt;sudo reboot&amp;lt;/code&amp;gt;&lt;br /&gt;
* Teste die Kamera via &amp;lt;code&amp;gt;raspivid -t 5000&amp;lt;/code&amp;gt; : Der Videostream sollte für 5s zu sehen sein.&lt;br /&gt;
* Damit auch Standard-Beispiele laufen, sollte die Raspberry-Kamera noch als V4L2-Device eingebunden werden. Dazu folgendes tun:&lt;br /&gt;
** Edititere die Datei '''/etc/modules''' als root via &amp;lt;code&amp;gt;sudo nano /etc/modules&amp;lt;/code&amp;gt;&lt;br /&gt;
** Füge am Ende der Datei eine Zeile mit dem Inhalt &amp;lt;code&amp;gt;bcm2835-v4l2&amp;lt;/code&amp;gt; ein, Datei dann mit STRG+o speichern, den Editor mit STRG+x verlassen, das System neu starten&lt;br /&gt;
** Danach sollte das Kommando &amp;lt;code&amp;gt;ls /dev/video0&amp;lt;/code&amp;gt; eine Device-Datei finden und keinen Fehler ausgeben. Wenn nicht, hilft es evtl. im obigen Schritt noch vor die '''bcm2835-v4l2'''-Zeile eine Zeile mit folgendem Inhalt einzufügen: &amp;lt;code&amp;gt;v4l2_common&amp;lt;/code&amp;gt; (auch hier nach neu booten). Bei mir war das allerdings nicht nötig.&lt;br /&gt;
* Jetzt kann alles zusammen getestet werden, in dem das Skript im Abschnitt [[OpenCV_mit_Python#Testen_der_Kamera_unter_Python-OpenCV]] auf der Konsole oder z.B. in Thonny gestartet wird. Es sollte ein Fenster mit dem Kamerabild in Graustufen anzeigen.&lt;br /&gt;
&lt;br /&gt;
== Windows (und ggf auch Mac/Linux) via PyCharm ==&lt;br /&gt;
* Installiere Python3 von Python.org: '''Wichtig:'''&lt;br /&gt;
** Per Rechtsklick als Admin installieren&lt;br /&gt;
** Bei Installation auch pip installieren lassen und Pfade setzen lassen&lt;br /&gt;
* Installiere PyCharm Community Edition von [https://www.jetbrains.com/pycharm/ Jetbrains]&lt;br /&gt;
** Darin habe ich dann ein neues Projekt angelegt, dabei &amp;quot;Virtualenv&amp;quot; als Environment gewählt&lt;br /&gt;
** Über &amp;quot;File-&amp;gt;Settings...&amp;quot; das Settings-Fenster öffnen,&lt;br /&gt;
*** darin dann Links das eigene &amp;quot;Projekt: xxx&amp;quot; ausklappen, dort drunter auf &amp;quot;Project Interpreter&amp;quot; gehen&lt;br /&gt;
*** Hier sollte jetzt eine Python3-Version ausgewählt sein und unter den Packages mind. &amp;quot;pip&amp;quot; vorhanden sein&lt;br /&gt;
*** Über das kleine &amp;quot;+&amp;quot;-Symbol recht weit rechts können nun weitere Packages für das Projekt installiert werden, es öffnet sich ein Fenster &amp;quot;Available Packages&amp;quot;&lt;br /&gt;
**** Darin in der Suche &amp;quot;opencv&amp;quot; eingeben und das Paket '''&amp;quot;opencv-contrib-python&amp;quot;''' installieren - unten wird dann irgendwo angezeigt ob es geklappt hat&lt;br /&gt;
**** Darin dann auch noch nach &amp;quot;numpy&amp;quot; suchen und das Paket '''&amp;quot;numpy&amp;quot;''' installieren&lt;br /&gt;
**** Dann das Packet-Manager-Fenster schliessen&lt;br /&gt;
*** Auch das Settings-Fenster mit &amp;quot;OK&amp;quot; schliessen&lt;br /&gt;
** Vermutlich muss man jetzt trotzdem noch etwas warten, weil PyCharm im Hintergrund immernoch installiert. Erst wenn PyCharm fertig ist, kann man das test_video.py starten.&lt;br /&gt;
&lt;br /&gt;
= Testen der Kamera unter Python-OpenCV =&lt;br /&gt;
Das folgende Skript sollte unter allen Betriebsystemen laufen, unter Linux/Raspbian wird ein V4L2 Device benötigt, unter Windows ging es direkt. Das folgende Skript auf der jeweiligen Maschine ausprobieren - via Terminal, Thonny, PyCharm oder was auch immer:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
import numpy as np&lt;br /&gt;
import cv2 as cv&lt;br /&gt;
cap = cv.VideoCapture(0)&lt;br /&gt;
while(True):&lt;br /&gt;
    # Capture frame-by-frame&lt;br /&gt;
    ret, frame = cap.read()&lt;br /&gt;
    # Our operations on the frame come here&lt;br /&gt;
    gray = cv.cvtColor(frame, cv.COLOR_BGR2GRAY)&lt;br /&gt;
    # Display the resulting frame&lt;br /&gt;
    cv.imshow('Hit ESC to close', gray)&lt;br /&gt;
    if cv.waitKey(1) &amp;amp; 0xFF == 27:&lt;br /&gt;
        break&lt;br /&gt;
# When everything done, release the capture&lt;br /&gt;
cap.release()&lt;br /&gt;
cv.destroyAllWindows()&lt;br /&gt;
&amp;lt;/pre&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Es sollte das Videobild in Graustufen angezeigt werden, im aktiven Kamerabildfenster &amp;quot;ESC&amp;quot; drücken, um das Program ordentlich zu beenden.&lt;br /&gt;
&lt;br /&gt;
== RAW-Zugriff auf die Raspberry Pi Kamera ==&lt;br /&gt;
Mit dem folgenden Skript kann ohne V4L2-Treiber auf die Raspberry Pi Kamera zugegriffen werden. Evtl. ermöglicht das auch feinere Einstellungsmöglichkeiten der Kamera wie z.B. Belichtungszeit etc. &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# OpenCV camera test special for Raspberry Pi&lt;br /&gt;
# import the necessary packages&lt;br /&gt;
from picamera.array import PiRGBArray&lt;br /&gt;
from picamera import PiCamera&lt;br /&gt;
import time&lt;br /&gt;
import cv2&lt;br /&gt;
import numpy as np&lt;br /&gt;
&lt;br /&gt;
# initialize the camera and grab a reference to the raw camera capture&lt;br /&gt;
camera = PiCamera()&lt;br /&gt;
camera.resolution = (640, 480)&lt;br /&gt;
camera.framerate = 32&lt;br /&gt;
camera.rotation = 0&lt;br /&gt;
rawCapture = PiRGBArray(camera, size=camera.resolution)&lt;br /&gt;
&lt;br /&gt;
# allow the camera to warmup&lt;br /&gt;
time.sleep(1)&lt;br /&gt;
&lt;br /&gt;
# capture frames from the camera&lt;br /&gt;
for frame in camera.capture_continuous(rawCapture, format=&amp;quot;bgr&amp;quot;, use_video_port=True):&lt;br /&gt;
    # grab the raw NumPy array representing the image, then initialize the timestamp&lt;br /&gt;
    # and occupied/unoccupied text&lt;br /&gt;
    image = frame.array&lt;br /&gt;
    &lt;br /&gt;
    # show the frame&lt;br /&gt;
    gray = cv2.cvtColor(image,cv2.COLOR_BGR2GRAY)&lt;br /&gt;
    cv2.imshow(&amp;quot;Hit ESC to end&amp;quot;, gray.astype(np.uint8))&lt;br /&gt;
    &lt;br /&gt;
    # clear the stream in preparation for the next frame&lt;br /&gt;
    rawCapture.truncate(0)&lt;br /&gt;
&lt;br /&gt;
    # if the `q` or ESC key was pressed, break from the loop&lt;br /&gt;
    key = cv2.waitKey(1) &amp;amp; 0xFF&lt;br /&gt;
    if key == ord(&amp;quot;q&amp;quot;) or key == 27:&lt;br /&gt;
        break&lt;br /&gt;
&lt;br /&gt;
cv2.destroyAllWindows()&lt;br /&gt;
camera.close()&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Es sollte das Videobild in Graustufen angezeigt werden, im aktiven Kamerabildfenster &amp;quot;ESC&amp;quot; drücken, um das Program ordentlich zu beenden.&lt;br /&gt;
&lt;br /&gt;
= OpenCV Cheats =&lt;br /&gt;
* Tutorials hier: https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.html&lt;br /&gt;
* Buntes Bild in Graustufen umwandeln: &amp;lt;code&amp;gt;gray = cv2.cvtColor(bild,cv2.COLOR_BGR2GRAY)&amp;lt;/code&amp;gt;&lt;br /&gt;
* Graustufen Bild in Buntbild umwandeln: &amp;lt;code&amp;gt;bunt = cv2.cvtColor(gray,cv2.COLOR_GRAY2BGR)&amp;lt;/code&amp;gt; (es bleibt Grau, kann dann aber eingefärbt werden)&lt;br /&gt;
* Kasten in ein Bild malen: &amp;lt;code&amp;gt;cv2.rectangle(bild, (x0,y0), (x1,y1), (b,g,r), rahmendicke)&amp;lt;/code&amp;gt;&lt;br /&gt;
* Text ins Bild malen: &amp;lt;code&amp;gt;cv2.putText(bild, &amp;quot;Hallo&amp;quot;, (10,400), cv2.FONT_HERSHEY_PLAIN, 1, (255,0,255))&amp;lt;/code&amp;gt; (Größerer Font: cv2.FONT_HERSHEY_SIMPLEX)&lt;br /&gt;
* Bildbereich kopieren: &amp;lt;code&amp;gt;block = bild[y0:y1, x0:x1]&amp;lt;/code&amp;gt;&lt;br /&gt;
* Bildbereich woanders einfügen (Größe muss genau passen!): &amp;lt;code&amp;gt;bild[y0:y1, x0:x1] = block&amp;lt;/code&amp;gt;&lt;br /&gt;
* Alle Farbkomponenten eines Pixels ändern: &amp;lt;code&amp;gt;bild[x,y] = [b,g,r]&amp;lt;/code&amp;gt;&lt;br /&gt;
* Nur eine Farbkomponente ändern (hier g = Index 1 da Reihenfolge BGR): &amp;lt;code&amp;gt;bild[x,y,1] = 255&amp;lt;/code&amp;gt;&lt;br /&gt;
* 8-Bit Farbkomponenten holen: &amp;lt;code&amp;gt;bild.astype(np.uint8)&amp;lt;/code&amp;gt; (falls man mal mit float oder so gerechnet hat)&lt;br /&gt;
* ArUco Marker (QR-Code ähnlich). http://www.philipzucker.com/aruco-in-opencv/&lt;br /&gt;
&lt;br /&gt;
== Maus-Events ==&lt;br /&gt;
Maus-Events können über ein Callback verarbeitet werden, OpenCV möchte aber wissen, welches der &amp;quot;imshow&amp;quot;-Fenster dafür herangezogen werden soll. Dazu muss das Fenster am Start einmal explizit mit einem Namen versehen werden.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mx = 10&lt;br /&gt;
my = 10&lt;br /&gt;
&lt;br /&gt;
def mouseEvent(event,x,y,flags,param):&lt;br /&gt;
    global mx,my&lt;br /&gt;
    mx = x&lt;br /&gt;
    my = y&lt;br /&gt;
    #print(x, y)&lt;br /&gt;
&lt;br /&gt;
cv.namedWindow(&amp;quot;Window1&amp;quot;)&lt;br /&gt;
cv.setMouseCallback(&amp;quot;Window1&amp;quot;, mouseEvent)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Bar/QR Codes Lesen ==&lt;br /&gt;
Eine funktionierende Library dafür ist &amp;quot;zbar&amp;quot; (mit PIP als &amp;quot;pyzbar&amp;quot; zu finden).&lt;br /&gt;
Allerdings benötigt die Library noch &amp;quot;PIL&amp;quot; (Python Imaging Library), die aktuell als &amp;quot;PILLOW&amp;quot; weitergeführt wird.&lt;br /&gt;
Um die Examples von &amp;quot;zbar&amp;quot; also ausführen zu können muss neben &amp;quot;PILLOW&amp;quot; noch der Wrapper &amp;quot;PILLOW - PIL&amp;quot; installiert werden.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
    decoded = pyzbar.decode(im)&lt;br /&gt;
&lt;br /&gt;
    for obj in decoded:&lt;br /&gt;
        print('Typ : ', obj.type)&lt;br /&gt;
        print('Wert: ', obj.data, '\n')&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Datei:OpencvWorkshopQRCodeRecognition.jpg]]&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:OpencvWorkshopQRCodeRecognition.jpg&amp;diff=10507</id>
		<title>Datei:OpencvWorkshopQRCodeRecognition.jpg</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:OpencvWorkshopQRCodeRecognition.jpg&amp;diff=10507"/>
				<updated>2019-03-31T19:27:07Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=ChaosCommunicationCamp&amp;diff=10356</id>
		<title>ChaosCommunicationCamp</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=ChaosCommunicationCamp&amp;diff=10356"/>
				<updated>2018-12-03T23:32:11Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Link: https://events.ccc.de/&lt;br /&gt;
&lt;br /&gt;
Zeitraum: 21.08.-25.08.2019&lt;br /&gt;
&lt;br /&gt;
Wo: Ziegeleipark Mildenberg&lt;br /&gt;
&lt;br /&gt;
Wer?&lt;br /&gt;
Was?&lt;br /&gt;
Wie?&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=ChaosCommunicationCamp&amp;diff=10355</id>
		<title>ChaosCommunicationCamp</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=ChaosCommunicationCamp&amp;diff=10355"/>
				<updated>2018-12-03T23:31:29Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: Die Seite wurde neu angelegt: „ Link: https://events.ccc.de/  Wo: Ziegeleipark Mildenberg  Wer? Was? Wie?“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Link: https://events.ccc.de/&lt;br /&gt;
&lt;br /&gt;
Wo: Ziegeleipark Mildenberg&lt;br /&gt;
&lt;br /&gt;
Wer?&lt;br /&gt;
Was?&lt;br /&gt;
Wie?&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Termine&amp;diff=10354</id>
		<title>Termine</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Termine&amp;diff=10354"/>
				<updated>2018-12-03T23:30:20Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
''Jeden Montag 19.00 bis 22.30 Uhr | [[Open_Monday_*|Open Monday *]] Basteln - was das Zeug hält - Gäste sind willkommen.''&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;!-- ''Jeden Dienstag 19.00 bis 22.30 Uhr | [[Thinkers_Tuesday_*|Thinkers Tuesday *]] Für die, die konkret und in ruhigerer Umgebung an einem Projekt arbeiten wollen.''&amp;lt;br /&amp;gt; --&amp;gt;&lt;br /&gt;
''Jeden Mittwoch 19.00 bis 22.30 Uhr | [[Hackffm³RepRap#hackffm.C2.B3RepRap_wednesday_.2A|hackffm³RepRap wednesday *]] Open Source Hardware und 3D Drucker Begeisterte - Gäste sind willkommen.''&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 21.08.-25.08.2019 -[[ChaosCommunicationCamp]]&lt;br /&gt;
&lt;br /&gt;
* 13. Oktober 2018, 14 Uhr - [[Kaffee-Nachmittag]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 26./27. Mai 2018, 10-18 Uhr | [http://www.make-rhein-main.de Make-Rhein-Main in Frankfurt]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* x. April 2018, 15-21 Uhr | [[LoRaWAN|LoRa und LoRaWAN]] Workshop Teil 2. Fortgeschrittene TTN-Nodes und TTN-Gateway-Bau sind geplant - weitere Infos und Termin folgen hier noch...&lt;br /&gt;
&amp;lt;!-- Bitte um Anmeldung über unsere Mailingliste oder an [[Datei:Email.gif‎]]. Der Workshop ist auch offen für Nicht-Mitglieder, allerdings wird für Teilnehmer, die weder Mitglied im Hackerspace FFM noch im CCC FFM sind, um eine Spende zugunsten unserer Vereinskasse gebeten. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 25. Februar 2018, 15-21 Uhr | [[LoRaWAN|LoRa und LoRaWAN]] Workshop Teil 1. LoRa-Verbindungen und einfache TTN-Nodes wurden gebaut.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 17./18. Februar 2018 | Exciss Hackathon&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 25. Oktober 2017, ab 19:30 Uhr | Mitglieder Vollversammlung - Neuwahl des Vorstands, Anpassung der Satzung, uvm.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 16./17. September 2017, ab 11 Uhr | Exciss Hackathon&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 02. September 2017, 10-18 Uhr | #hackffm auf der [http://www.make-rhein-main.de Make Darmstadt] und hier die Bilder [[Make_Darmstadt_2017]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Abgesagt:&amp;lt;strike&amp;gt;20. Juli 2017, 19:30&amp;lt;/strike&amp;gt; | Fertigungsgerechtes Konstruieren mit (nicht nur) Fusion 360. Inhalte: Konstruktionshilfen + Tricks und Empfehlungen für 3D Druck, Laserschneiden und Fräsfertigung so dass DIY Projekte günstiger, schneller und vll auch besser klappen&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 22. Juni 2017, 19:30 | Fusion 360: &amp;quot;Sketches for the Sketchy&amp;quot; - Fortgeschrittener Zeichnen und Render Kurs!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 18. Mai 2017, 19:30 | [[CAM for Makers mit Fusion 360]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 06. Mai 2017, 21:00 | Mehr oder weniger ungeplante [[C64-Retro-Gaming-Party]] ... Wiederholung nicht ausgeschlossen&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 27. April 2017, 19:30 | [[Freeform-Madness mit Fusion 360]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 10. April 2017, 19:00 | [[Workshop zu Transistoren]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 8. April 2017 | Aufräum- und Entrümpelungstag im Hackerspace&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 30. März 2017 | [[Intro zu Fusion 360 CAD]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 17.-19. März 2017 | #hackffm auf der [http://www.make-rhein-main.de Make Rhein-Main] in den Hallen unter der Honsellbrücke in Frankfurt&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 13. August 2016, Treffen 13:00, Start 14:00 | Drill, Mill, Grill &amp;amp; Chill - Workshop zum Thema Metallbearbeitung mit der [[Fräse Optimum]] mit anschließendem Grillen.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 4./5. Juni 2016 | #hackffm auf der [http://www.make-rhein-main.de Make Rhein-Main] im Isenburger Schloss, HfG Offenbach, Schlossstraße 66, 63065 Offenbach am Main&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 24. Mai 2016 20:00 | Workshop Git&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 23. April 2016, 14:00 | Workshop Audiosignalverarbeitung mit Teensy 3.1 + Audio-Shield.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 30./31. Januar 2016 | #hackffm auf der [http://www.make-rhein-main.de Make Rhein-Main].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 3./4. Oktober 2015, ab 11:00 Uhr | Workshop zum Bau von [[Rundbunt Mini]]s, Anmeldung erforderlich (über Mailingliste)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 26. September 2015, ab 10:30 Uhr | [[Reflow Workshop]] (ähnlich wie [[Workshop SMD-Löttechniken]]), diesmal Aufbau von [[HackFFM-Duino Chime]]s&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* 16. September 2015, 20:00 Uhr | Mitglieder Vollversammlung - Neuwahl des Vorstands, Anpassung der Beitragsordnung, uvm.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*1./2. August 2015, ab 10 Uhr | Raum 2.0: Renovierungsarbeiten (Streichen), Netzwerk- und Stromverkabelung&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*30./31. Mai 2015, ca. 10-18 Uhr | Hackerspace auf der [http://www.make-rhein-main.de/ bended realities - Make Rhein-Main] im Isen­bur­ger Schloss in Of­fen­bach a.M.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*14.-17. Mai 2015 | 3D-Drucker [[Workshop BB-One]], am 17. Mai 2015 auch offen für Besucher im [http://www.aeronauten.org/aeronauten/ Aeronauten Hanger]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*30. April 2015 | Hackerspace auf der Jubiläumsparty 20 Jahre [http://www.fritzdev.de/ Fritz Deutschland] in Rödelheim.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*8. März 2015, ab 13.00 Uhr | Workshop [[ESP8266 Grundlagen]] im Hackerspace.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*21. Dezember 2014 bis 4. Januar 2015 | voraussichtlich Weihnachtspause im Hackerspace - keine Veranstaltungen.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*5. November 2014, 19.30 Uhr | Mitgliedervollversammlung im Hackerspace&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*23. August 2014, ab 11.00 Uhr | Reflow-Löten der ersten Skyline-Reihe Prototypen von David im Hackerspace. Wer auch gerade was Reflow-Löten, uns helfen oder uns über die Schultern schauen will, kann gerne vorbei kommen.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*24. + 25. Mai 2014 | #hackffm auf der [http://www.make-rhein-main.de Make Rhein-Main].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*18. April 2014, ab 11.00 Uhr | [[Workshop SMD-Löttechniken]]: Handlöten mit Lötkolben oder Heißluft, Prozesslöten im Reflow-Ofen&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*18. Februar 2014, ab 19.00 Uhr | Eagle-Workshop - Mit Hilfe dieser von mir vorbereiteten [[Eagle Kurzeinführung]] zeige ich euch die ersten Schritte zur Nutzung des populären Platinen-Layout-Programmes. Ziel der ersten Session sollte sein wie man Schaltpläne erstellt, neue Bauteile der Bibliothek hinzufügt sowie erste Schritte im Layouten der Leiterplatte. In einer zweiten Session kann ich dann bei Bedarf noch zeigen, welche Abschlussarbeiten an der Leiterplatte typischerweise noch gemacht werden (Auffüllen mit Masseflächen, Beschriftungen, Editieren des Stoplacks, DRC-Prüfung, Generierung der Gerber-Daten zur Leiterplattenbestellung etc.). Der Workshop ist als &amp;quot;Hands-On&amp;quot; Workshop gedacht, bringt einen Computer mit Eagle sowie eine Schaltungsprojekt-Idee, die ihr umsetzen wollt, mit. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*15. Februar 2014, ab 09.00 Uhr | Special Appearance der [[Drawbot@MfK|Drawbots]] und anderes auf [http://jugda.wordpress.com/termine/tic-tac-toe/ The Ultimate Tic Tac Toe Challenge] / Java User Group Darmstadt&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*1. Februar 2014, ab 15.00 Uhr | Aufbau Gestell für Laser und 3D-Drucker und Überarbeitung des Lasers.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*23. Dezember 2013 bis 5. Januar 2014 | voraussichtlich Weihnachtspause im Hackerspace - keine Veranstaltungen.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*22. Oktober 2013, ab 19.00 | Themen Thinkers Tuesday: [[Raspberry Pi Advanced]] Diesmal geht es um Fortgeschrittene Themen, Octoprint aufsetzen, GPIO-Zugriffsmöglichkeiten, Programmierung des Raspberry inkl. IO-Zugriffen in C. Auch hier gilt wieder: Zugucken erwünscht, mitmachen noch mehr erwünscht.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*21. Oktober 2013, ab 19.00 | Themen Open Monday: [[Raspberry Pi Grundlagen]] Raspbian Grundinstallation, Netzwerk Einrichtung (LAN/WLAN, dynamic/static IP, dynamic DNS), Serverdienste (SSH, VNC, Samba, ...). Ich werde einen Raspberry als Server für den Hackerspace aufsetzen. Wer möchte kann mir dabei über die Schulter schauen oder gleich seinen eigenen RaspberryPi mitbringen und die Schritte unter Hilfestellung nachvollziehen. Fernziel ist es auf dem Raspberry auch [http://www.http://octoprint.org/ Octoprint], ein Dienst um per Webinterface den 3D-Drucker zu bedienen, zu installieren. Vermutlich sprengt dies aber den zeitlichen Rahmen und wird später fortgesetzt.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*18. Oktober 2013, ab 19.00 Uhr | RetroModden - Sega Game Gear und andere (Gäste sind willkommen)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*12. Oktober 2013 | #hackffm auf der [http://www.elektor-live.com Elektor-Live] (Hanau)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*21. + 22. September 2013, 10.00 - 21.00 Uhr | '[[OS3DC|Open Source 3D Drucker Convention]]' - RepRap Frankfurt&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Entfällt: 24. August 2013, ab 11 Uhr | [http://www.hamburger-makertreffen.de/ #hackffm auf dem Attraktor Maker-Treffen (Hamburg)]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*22. Juli 2013, 19.30 - 22.30 Uhr | [[Mumomi_Electronic|mumomi RepRap Elektronik Workshop]] - Platinen Herstellung&lt;br /&gt;
**23. Juli 2013, 19.30 - 22.30 Uhr | [[Mumomi_Electronic|mumomi RepRap Elektronik Workshop]] - Platinen Herstellung&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*13. + 14. Juli 2013, 09.00 - 18.00 Uhr | [https://www.manupool.de/de/3d-drucker-workshop 3D Drucker Aufbau Workshop]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*15. Juni 2013 | [http://www.lugfrankfurt.de/FUxCon #hackffm auf der FUxCon]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*11. Mai 2013, 13.00 - 22.00 Uhr | 'Das Große Ätzen' - Platinen Herstellung für Beginner.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*12. bis 14. April 2013&lt;br /&gt;
** #hackffm auf der LHC4: https://wiki.raumzeitlabor.de/wiki/LHC4 &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 12. Februar 2013 | [http://node13.vvvv.org/program/consultation-hour-reprep/ &amp;quot;Consultation hour Hackffm³RepRap&amp;quot;]&lt;br /&gt;
**15.30 Uhr, Markt 44, [http://de.wikipedia.org/wiki/Steinernes_Haus_%28Frankfurt_am_Main%29 Steinernes Haus:] #hackffm at Node13&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 11. Februar 19 Uhr * [[WMFRA45|Hackerspace Ffm auf dem Webmontag 45]] (Brotfabrik)&lt;br /&gt;
**[http://g.co/maps/vdv9u Brotfabrik/kp-21], Bachmannst. 2-4, D-60488 Frankfurt am Main&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*20. Dezember 2012 | MUVE²CAD: Der erste MUVE²CAD Abend wird am Donnerstag stattfinden.&lt;br /&gt;
**19.00 Uhr, Kesselhaus, Westerbachstraße 47/Gebäude 9 - 60489 Frankfurt Rödelheim.&lt;br /&gt;
**An diesem Themenabend geht es um (CAD) 3D Zeichnen, Konstruieren. Es werden Themen wie beispielsweise 3D Design, 3D Konstruktion, Metaverse, Serious Games, behandelt.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 08. Dezember 2012 | Besuch beim Technikum29, Teil II, Kommunikationstechnik (http://www.technikum29.de)&lt;br /&gt;
**17.00 Uhr, Technikum29, Anmeldung über Mailingliste&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 27. November 2012 | Messebesuch: [http://www.euromold.com Euromold 2012]&lt;br /&gt;
** 12.00 Uhr, Eingang U-Bahnstation (U4)&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 24. November 2012 | [[Speedbuilding|RepRap Speed-Building]] [http://www.messestuttgart.de/cms/hobby_elektronik2012_besucher_messe00.0.html Hobby &amp;amp; Elektronik] Stuttgart&lt;br /&gt;
** 15.30 Uhr - 17.30 Uhr&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 04. November 2012 | Besuch beim Technikum29 (http://www.technikum29.de)&lt;br /&gt;
**17.00 Uhr, Technikum29, Anmeldung über Mailingliste&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 28. Oktober 2012 | Essen &amp;amp; Trinken im Kesselhaus: BBQ&lt;br /&gt;
**19.00 Uhr 'open end * Gäste sind willkommen, Getränke sind vorrätig, Grillgut organisiert jeder selbst &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 30. September 2012 | Essen &amp;amp; Trinken im Kesselhaus: BBQ&lt;br /&gt;
**19.00 Uhr 'open end * Gäste sind willkommen, Getränke sind vorrätig, Grillgut organisiert jeder selbst &amp;lt;br /&amp;gt;&lt;br /&gt;
*1. September 2012, 10-20 Uhr | hackffm³RepRap Workshop September&lt;br /&gt;
**2. September 2012, 10-20 Uhr | hackffm³RepRap Workshop September&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 26. August 2012 | Essen &amp;amp; Trinken im Kesselhaus: BBQ&lt;br /&gt;
**19.00 Uhr 'open end * Gäste sind willkommen, Getränke sind vorrätig, Grillgut organisiert jeder selbst &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 17. August, Freitag: Offen, Gäste: [http://h42i.de/ h42i – Der Hackspace Siegen]&amp;lt;br /&amp;gt;&lt;br /&gt;
**19.00 Uhr, Kesselhaus, Westerbachstraße 47/Gebäude 9 - 60489 Frankfurt Rödelheim.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 13. August 19 Uhr * [http://vimeo.com/57495551 Hackerspace Ffm auf dem Webmontag] (Brotfabrik)&lt;br /&gt;
**[http://g.co/maps/vdv9u Brotfabrik/kp-21], Bachmannst. 2-4, D-60488 Frankfurt am Main&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 04. August [[OpenSimulator]] meetup Frankfurt: OpenSim Enthusiasten, Entwickler und Anwender sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
**14.00 bis 15.30 Uhr, Kesselhaus, Westerbachstraße 47/Gebäude 9.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 29. Juli 2012 | Essen &amp;amp; Trinken im Kesselhaus: BBQ&lt;br /&gt;
**19.00 Uhr 'open end' * Gäste sind willkommen, Getränke sind vorrätig, Grillgut organisiert jeder selbst &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 22. Juli 2012 | Offen &lt;br /&gt;
**16.00 Uhr bis 22.30 * alles geht...&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 07. Juli [[OpenSimulator]] Meet-Up Frankfurt: OpenSim Enthusiasten, Entwickler und Anwender sind willkommen &lt;br /&gt;
**19.00 Uhr, Hackerspace Ffm e.V., Westerbachstraße 47/Gebäude 9 - 60489 Frankfurt Rödelheim&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 24. Juni 2012 Essen &amp;amp; Trinken im Kesselhaus: BBQ&lt;br /&gt;
**19.00 Uhr 'open end' * Gäste sind willkommen, Getränke sind vorrätig, Grillgut organisiert jeder selbst&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 20. Juni 2012 [[Hackffm³RepRap|hackffm³RepRap]] Workshop: LCD Upgrade&lt;br /&gt;
** 19.00 Uhr: Lochrasterplatine, LCD-Display und Drehencoder mitbringen...&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 2. Juni 2012 ab 11 Uhr 3D Drucken auf dem [http://rheinmain.startupweekend.org/2012/04/06/print-your-prototype-at-our-event/ Start-Up Weekend RheinMain]&amp;lt;br /&amp;gt;&lt;br /&gt;
**3. Juni 2012, ab 11 Uhr [http://www.hackerspace-ffm.de/wiki/index.php?title=Hackffm%C2%B3RepRap#hackffm.C2.B3RepRap_.2A_2._.2B_3._Juni_2012_-_hackffm.C2.B3RepRap_auf_dem_Start-Up_Weekend_RheinMain hackffm³RepRap] auf dem Start-Up Weekend RheinMain&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 27. Mai 2012 Essen &amp;amp; Trinken im Kesselhaus&lt;br /&gt;
**19.30 bis 23.30 Uhr * Gäste sind willkommen, um [http://doodle.com/fszyi82d9xqgiva9 Anmeldung] wird gebeten.&lt;br /&gt;
**Seit diesem Monat wird am letzten Sonntag im Monat bewirtet, im Kesselhaus.&lt;br /&gt;
**Ein Team Kocht - die Gäste zahlen soviel sie geben möchten.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 19. Mai 2012 [[Hackffm³RepRap|hackffm³RepRap]] auf dem [[Multikopter|Multikopter]] Treffen 'Landkamp'&lt;br /&gt;
** 13.00 bis 13.30 Uhr Talk: &amp;quot;3D Drucken (RepRap) – [http://hackerspace-ffm.de/wiki/index.php?title=Datei:AutoreplikationPerDesign.pdf Autoreplikation per Design]”&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 21. April 10 bis 20 Uhr [[Hackffm³RepRap|hackffm³RepRap Workshop]] im [http://www.jrl.cs.uni-frankfurt.de/web/ Joint Robotics Lab]&lt;br /&gt;
* 22. April 10 bis 20 Uhr [[Hackffm³RepRap|hackffm³RepRap Workshop]]&lt;br /&gt;
**Goethe-Universität Frankfurt, Robert-Mayer-Straße 11-15, Raum SR11, 60325 Frankfurt&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 07. April 10 bis 22 Uhr * [[Mendel_Upgrade|Upgrade Mendel 3D Drucker]]&lt;br /&gt;
* 08. April 10 bis 16 Uhr * [[Mendel_Upgrade|Upgrade Ikea Mendel]]&lt;br /&gt;
* 09. April 14 bis 22 Uhr * [[Mendel_Upgrade|Ikea-Mendel 3D Upgrade]]&lt;br /&gt;
**Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 12. März 19 Uhr * [https://blip.tv/web-montag-frankfurt-am-main/wmfra36_hd_a-6019594 Hackerspace Ffm auf dem Webmontag] (Brotfabrik)&lt;br /&gt;
**[http://g.co/maps/vdv9u Brotfabrik/kp-21], Bachmannst. 2-4, D-60488 Frankfurt am Main&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*02. März 21 bis 23 Uhr * [[Hackffm on Air]]&amp;lt;br /&amp;gt;&lt;br /&gt;
**radio x, Schützenstraße 12, 60311 Frankfurt&amp;lt;br /&amp;gt;&lt;br /&gt;
***Treffpunkt 20 Uhr Hackerspace&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 26. Februar 17 Uhr * Offen&lt;br /&gt;
**Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 24. Februar 19 Uhr * [[Geocache|Geocaching]]: Nachtcache am Freitag&lt;br /&gt;
**Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 28. Januar 19 Uhr * Offen&lt;br /&gt;
**Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*25. Januar 2012 19 Uhr * hackffm³RepRap wednesday&lt;br /&gt;
**Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*23.01.2012 19 Uhr * [[Open Monday *|Open Monday *]] Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*21. Januar 2012 18 Uhr * Offen für alle Projekte&lt;br /&gt;
**Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*18.01.2011, 19 Uhr * RepRap - Ikea Mendel, Vorbereitung des RepRap Workshops im April, etc...&amp;lt;br /&amp;gt;&lt;br /&gt;
**Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*14. Januar 2012 * [[Januar Convention|User Convention]] im [http://www.mfk-frankfurt.de/ MfK]&lt;br /&gt;
** 15. Januar 2012 [[Januar Convention|User Convention]] im [http://www.mfk-frankfurt.de/ MfK]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*08.01.2012 15 Uhr * Planung: WE im MfK, [[hackffm³RepRap]], Podcast; Buntich...&amp;lt;br /&amp;gt;&lt;br /&gt;
**Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*07.01.2012 15 Uhr * Planung [[hackffm³RepRap]] Buntich etc...&amp;lt;br /&amp;gt;&lt;br /&gt;
**Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* [[Datei:Laermschutz.png|40px|caption|CNC Fräsen - es wird laut]] 28.12.2011 19 Uhr * CNC Fräsen - es wird laut ...&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*27.12.2011 19 Uhr * Alles geht, RepRap etc...&amp;lt;br /&amp;gt;&lt;br /&gt;
**Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*23.12.2011 18 Uhr * Drawbot, Fräse, 3D Drucker...&lt;br /&gt;
**Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*21.12.2011 19 Uhr * RepRap, Show &amp;amp; Tell...&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*19.12.2011 19 Uhr * RepRap, Show &amp;amp; Tell&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 17.12.2011 19 Uhr * Open Saturday * Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*14.12.2011 19 Uhr * RepRap, Show &amp;amp; Tell&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*12.12.2011 19 Uhr * [[Open Monday *|Open Monday *]] Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*11.12.2011 16 Uhr * RepRap, Show &amp;amp; Tell&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*10.12.2011 19 Uhr * RepRap, Show &amp;amp; Tell&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*05.12.2011 19 Uhr * [[Open Monday *|Open Monday *]] Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*04.12.2011 19 Uhr * Außerordentliche Mitgliederversammlung&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47 Haus 9, 60489 Frankfurt&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 03.12.2011 11.00 bis 20.00 Uhr * [http://www.mfk-frankfurt.de/nc/programm/kalender/mehr-info/events/2085/p1/detail.html 3D-Drucker-Lounge] im [http://www.diy-ausstellung.de MfK]'''&amp;lt;br /&amp;gt;&lt;br /&gt;
** Museum für Kommunikation Frankfurt, Schaumainkai 53 (Museumsufer), 60596 Frankfurt&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 02.12.2011 19 Uhr * Open Friday * Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 20.11.2011 10.00 bis 15.00 Uhr [http://www.tedxrheinmain.de/youth/ TEDx - TEDxYouth@RheinMain]&lt;br /&gt;
** Institut für Informatik, Staudingerweg 9, 55128 Mainz -  [http://www.tedxrheinmain.de/youth/program/ Programm]&lt;br /&gt;
** [[Bristlebots]] und [[Drawbot@MfK]] vorstellen&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 19.11.2011 19 Uhr * Open Saturday * Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 17.11.2011 10.00 Uhr * AUGE und der RepRap Mendel auf der [http://www.messe-stuttgart.de/cms/hobby11_besucher_messe.0.html Hobby &amp;amp; Elektronik Stuttgart]&amp;lt;br /&amp;gt;&lt;br /&gt;
** 18.11.2011 10.00 Uhr * AUGE und der RepRap Mendel auf der Hobby &amp;amp; Elektronik Stuttgart&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 16.11.2011 19.00 Uhr * RepRap Mendel &amp;amp; Prusa Mendel Treffen im Kesselhaus...&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 12.11.2011 19.00 Uhr * &amp;quot;Tag ohne Türen&amp;quot; im Kesselhaus&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 07.11.2011 19 Uhr * [[Open Monday *|Open Monday *]] Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 31.10.2011 19 Uhr * [[Open Monday *|Open Monday *]] Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 29.10.2011 14.00 Uhr * Sprech- und Bastelstunde im Kesselhaus, alles ist möglich...&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 23.10.2011 19 Uhr * Vorstandssitzung&amp;lt;br &amp;gt;&lt;br /&gt;
** Thema: [[Mailingliste]]&lt;br /&gt;
**[[Protokoll Vorstandssitzung 23.10.11]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 22.10.2011 14.30 Uhr * RepRap 3D Drucker&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 19.10.2011 19 Uhr * [http://www.makefurt.de MAKEfurt im Hackerspace Ffm]&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 17.10.2011 19 Uhr * [[Open Monday *|Open Monday *]] Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 14.10.2011 19 Uhr * [[Workshop_Platinenherstellung_Teil_II| Workshop Platinenherstellung Teil II]] - Einweihung des Reflow-Ofens&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 10.10.2011 19 Uhr * [[Open Monday *|Open Monday *]] Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 09.10.2011 15 Uhr * Hackerspace Ffm Workshop im [http://www.diy-ausstellung.de Museum für Kommunikation] Frankfurt&amp;lt;br /&amp;gt;&lt;br /&gt;
** Schaumainkai 53, 60596 Frankfurt am Main&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 07.10.2011 19 Uhr * [[Workshops|Workshop Platinenherstellung Teil I - Fortsetzung]] - Wir stellen unsere Platinen selbst her&lt;br /&gt;
**Ätzen und bohren der Platinen, SMD-Löten&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 04.10.2011 19 Uhr * [[Workshops|Workshop Platinenherstellung Teil I]] - Wir stellen unsere Platinen selbst her&lt;br /&gt;
** Übertragung des Layouts per Tonertransferverfahren, ätzen und bohren der Platinen, SMD-Löten&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 03.10.2011 19 Uhr * [[Open Monday *|Open Monday *]] Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 28.09.2011 18.30 Uhr * [http://www.makefurt.de MAKEfurt] im Kesselhaus&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 26.09.2011 19 Uhr * [[Open Monday *|Open Monday *]] Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 19.09.2011 18.30 Uhr Mieter- und Vereinstreffen Fritz deutschlanD e.V.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 19.09.2011 19 Uhr * [[Open Monday *|Open Monday *]] Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 12.09.2011 19 Uhr * [[Open Monday *|Open Monday *]] Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 05.09.2011 19 Uhr * [[Open Monday *|Open Monday *]] Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 29.08.2011 19 Uhr * [[Open Monday *|Open Monday *]] Basteln - was das Zeug hält - Gäste sind willkommen&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 27.08.2011 14 - 22 Uhr * [[3D-Drucker für MfK|Makerbot CupCake CNC]] Zusammenbau - Kalibrierung&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 24.08.2011 19 Uhr * [http://www.diy-ausstellung.de DIY: Die Mitmach-Revolution]&amp;lt;br /&amp;gt;&lt;br /&gt;
** Museum für Kommunikation Frankfurt, Schaumainkai 53, D-60596 Frankfurt am Main&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 22.08.2011 19 Uhr * [[Open Monday *|Open Monday *]] ATMEL AVR Basics&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 21.08.2011 14 Uhr - 21 Uhr * [[3D-Drucker_mit_AUGE.de|3D Drucker]] Team Meeting&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 20.08.2011 14.45 Uhr - open end Hackerspace meets AUGE e.V. Regionalgruppe Ostalb/Mutlangen&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 13.08.2011 14 Uhr - 22 Uhr * RepRap, [[3D-Drucker_mit_AUGE.de|3D Drucker]] Optimierung&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 07.08.2011 14.00 Uhr - open end [http://www.makefurt.de MAKEFURT] meets Hackerspace&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 29.07.2011 18.30 Uhr - 20.30 Uhr [[Podcast]] Workshop&amp;lt;br /&amp;gt;&lt;br /&gt;
** Hackerspace Ffm e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 17.07.2011 14 - 22 Uhr Die Kalibrierung der [[3D-Drucker_mit_AUGE.de|3D Drucker]] II (Calibration II)&amp;lt;br /&amp;gt;&lt;br /&gt;
** [http://www.saalbau.com/die-frankfurter-saalbauten-raumangebot/saalbau-ronneburg.html Saalbau Ronneburg], Gelnhäuser Straße 2, 60435 Frankfurt am Main&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 16.07.2011 von 14:00 - 16:30 Uhr [[OpenSimulator|OpenSimulator]]&amp;lt;br /&amp;gt;&lt;br /&gt;
** [http://maps.google.de/maps?q=saalbau+bockenheim&amp;amp;oe=utf-8&amp;amp;client=firefox-a&amp;amp;ie=UTF8&amp;amp;hl=de&amp;amp;z=16 Bürgerhaus Bockenheim], Schwälmer Straße 28, 60486 Frankfurt am Main.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 25.06.2011 10 Uhr - 21 Uhr * Kalibrierung der [[3D-Drucker_mit_AUGE.de|3D Drucker]]&amp;lt;br /&amp;gt;&lt;br /&gt;
** Fritz deutschlanD e.V., Westerbachstraße 47/H9 - 60489 Frankfurt Rödelheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 04.06.2011 10 Uhr - 20 Uhr * Zusammenbau des [[3D-Drucker_mit_AUGE.de|3D Druckers]] - Fortsetzung -&amp;lt;br /&amp;gt;&lt;br /&gt;
** 05.06.2011 10 Uhr - 20 Uhr * Zusammenbau des [[3D-Drucker_mit_AUGE.de|3D Druckers]] - Fortsetzung -&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 29.05.2011 um 17 Uhr - 19 Uhr Außerordentliche Mitgliederversammlung II&amp;lt;br /&amp;gt;&lt;br /&gt;
** Cafe Albatros, Kiesstrasse 27, 60486 Frankfurt am Main / Bockenheim&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*21.05.2011 10 Uhr - 20 Uhr * Zusammenbau des [[3D-Drucker_mit_AUGE.de|3D Druckers]]&lt;br /&gt;
** Sonntag 22.05.2011 10 Uhr - 18 Uhr * Zusammenbau des [[3D-Drucker_mit_AUGE.de|3D Druckers]] - Fortsetzung -&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*04.05.2011 um 19 Uhr - Projektplanung 3D Drucker Wochenende&lt;br /&gt;
**Pielok, Jordanstraße 3, 60486 Frankfurt&lt;br /&gt;
**http://www.restaurant-pielok.de/&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*17.04.2011 15 Uhr Außerordentliche Mitgliederversammlung&amp;lt;br /&amp;gt;&lt;br /&gt;
**Cafe Albatros, Kiesstrasse 27 - 60486 Frankfurt&amp;lt;br /&amp;gt;&lt;br /&gt;
**http://www.cafe-albatros.de/weg.htm&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*13.04.2011 19 Uhr Projektplanung 3D Drucker Wochenende (21.5. &amp;amp; 22.5.)&lt;br /&gt;
**Thai Wok, Ohmstraße 63, 60486 Frankfurt am Main&lt;br /&gt;
**http://goo.gl/faFlo&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* Dienstag, 29.03.2011 ab 19:00 1. offener Fablab Abend bei Alex zum Thema 3D Drucken mit einem RapMan 3.1&lt;br /&gt;
** Ich kann zeigen, wie man ein 3D Modell erzeugt (am besten mit &amp;quot;Art of Illusion&amp;quot; [http://www.artofillusion.org/]schon installiert auf eigenen Rechner mitbringen) und wie man es ausdruckt.&amp;lt;br&amp;gt;&lt;br /&gt;
** Achtung: auf 3 limitierte Teilnehmerzahl, mehr Platz haben wir leider nicht. Bei Interesse bitte per [[Spezial:E-Mail/Alex|E-Mail]] Email anmelden! &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Dienstag, 22.03.2011 18:00 Thüringer Straße 35, Frankfurt, googlemap: http://goo.gl/Ullbb&lt;br /&gt;
** [[LaTeX]]-Vortrag&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Sonntag, 20.03.2011 12:00 Thüringer Straße 35, Frankfurt, googlemap: http://goo.gl/Ullbb&lt;br /&gt;
** '''[[Build-a-thon_003]]'''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Freitag, 04.03.2011&lt;br /&gt;
** 19.30 Uhr Freitagtreffen im [http://www.cafe-albatros.de/weg.htm Albatros] in Bockenheim&lt;br /&gt;
*** Kooperation mit [http://www.auge.de AUGE e.V.] bei einem 3D Drucker (Mendel) Projekt&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*Sonntag, 27.02.2011, 12.00 Uhr - Kirche am Zoo, Thüringer Straße 35, 3. Stock Kirchturm&amp;lt;br /&amp;gt;&lt;br /&gt;
** '''[[Build-a-thon_002]]'''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* Freitag 18.02.2011, 19.30 Uhr - Kirche am Zoo, Thüringer Straße 35, 1. Stock [[Protokoll 18.02.11]]&lt;br /&gt;
** Getränke-Dosen-Automat Stand&lt;br /&gt;
** Mitgliedschaft - Vorteil gegenüber nicht-Mitgliedern&lt;br /&gt;
** Mitgliedsbeiträge&lt;br /&gt;
** Ruhende Mitgliedschaft&lt;br /&gt;
** Verein Mail Verkehr&lt;br /&gt;
** Raumsuche&lt;br /&gt;
** Sonstiges&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* 12.02.2011 und gegebenenfalls auch der 13.02.2011&lt;br /&gt;
** '''[[Build-a-thon_001]]''' im Turm&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* Samstag 05.02.2011 | 10.00 Uhr Kirche am Zoo, Thüringer Straße 35&amp;lt;br /&amp;gt;&lt;br /&gt;
*[http://www.hackerspace-ffm.de/wiki/index.php?title=Build-a-thon_001 Turmzimmer räumen]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* Freitag 04.02.2011&lt;br /&gt;
** 19.30 Uhr [http://wiki.ssdev.org/wiki/Frankfurt Lockpicker] Treffen in der Gaststätte &amp;quot;Niddahalle&amp;quot;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
* Freitag 21.01.2011 - Kirche am Zoo, Thüringer Straße 35&lt;br /&gt;
** Eröffnungsparty Planung&lt;br /&gt;
** Podcast Projekt Planung&lt;br /&gt;
** Stand Getränkedosen-Automat&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
*Freitag 07.01.2011 - Treffen im Klapperfeld&lt;br /&gt;
** Parallel: [[Getränkedosen-Automat]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Termine in 2010 ==&lt;br /&gt;
*Montag 27.12.2010 - Treffen im Klapperfeld&lt;br /&gt;
** 17:00&lt;br /&gt;
*Mittwoch 22.12.2010 - Vortrag&lt;br /&gt;
** 19:00 Uhr [[MSR-LAB|'''MSR-LAB-1''' - Messtechnik in Theorie und Praxis mit Arduino und Processing]] im [[Location:Café Müller|Café Müller]] ([[Benutzer:Axl|AXL]])&lt;br /&gt;
* Sonntag 19.12.2010&lt;br /&gt;
** 15.00 Uhr '''Pen &amp;amp; Paper RPG''' im Café Müller ([[Zocken]])&lt;br /&gt;
** ab 18:00 Stand der Dinge real und virtuell im Projekt [[Getränkeautomat|Getränkedosen-Automat]] (Manupool, Snow, [[Benutzer:Axl|AXL]])&lt;br /&gt;
*Sonntag 05.12.2010&lt;br /&gt;
** 15.00 Uhr Pen &amp;amp; Paper RPG ([[Zocken]])&lt;br /&gt;
** 20.00 Uhr Treffen im Café Müller ([[Raumsuche]])&lt;br /&gt;
* Mittwoch 24.11.2010&lt;br /&gt;
** 15.00 Uhr Raumbesichtigung Elbestraße 10 (Treffpunkt: Hotel Nizza)&lt;br /&gt;
** 20.00 Uhr Café Müller, Spieleabend!&lt;br /&gt;
** Vortrag &amp;quot;[[Diskussion:Termine#LaTeX-Vortrag_am_24.11._um_20.00_im_Müller|LaTeX]]&amp;quot; fällt aus!&lt;br /&gt;
* Freitag 19.11.2010 - Treffen im Klapperfeld um 19.30 Uhr&lt;br /&gt;
* Freitag 05.11.2010 - Treffen im Klapperfeld um 19.30 Uhr&lt;br /&gt;
** Vortrag &amp;quot;[[Einführung in die Automatentheorie]]&amp;quot;&lt;br /&gt;
* Freitag 15.10.2010 - Treffen im Cafe Müller um 20.00 Uhr&lt;br /&gt;
* Freitag 01.10.2010 - Treffen im [http://www.totalroedelheim.de/ total.Rödelheim] um 19.30 Uhr&lt;br /&gt;
&lt;br /&gt;
== Veranstaltungen ==&lt;br /&gt;
* Montag 17.01.2011 - Webmontag Frankfurt https://www.xing.com/events/webmontag-frankfurt-25-651090&lt;br /&gt;
* Samstag im Januar 10.00 Uhr, Open End Hackathon::FFM::Android&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Termine in 2010'''&lt;br /&gt;
* Samstag 11.12.2010 - Ursprünglicher Termin für den Android Hackathon.&amp;lt;br/&amp;gt;Da einige Mitglieder am gleichen Tag am [http://gtugna.gtugs.org/events/androidhackathon11122010axxessiogmbh Android Hackathon @ axxessio GmbH in Darmstadt] teilnehmen wollen wird unser Hackathon zu einem späteren Zeitpunkt nachgeholt.&lt;br /&gt;
* Samstag 04.12.2010 - [http://hackerspace-ffm.de/wiki/index.php?title=Diskussion:Termine#Euromold_2010 Euromold] - Gemeinsamer Besuch der Messe für Werkzeug- und Formenbau, Design und Produktentwicklung&lt;br /&gt;
* Freitag 03.12.2010 - um 19:30 Uhr [http://wiki.ssdev.org/wiki/Frankfurt Lockpicker Treffen] Sportsfreunde der Sperrtechnik - Deutschland e.V.&lt;br /&gt;
* Mittwoch 24.11.2010 - [http://www.itec10.de/ iTEC10 – Der internationale IKT-Kongress in Hessen] Kongress Park Hanau&lt;br /&gt;
* Sonntag 21.11.2010 - BarCamp Darmstadt http://www.barcamp-rheinmain.de/&lt;br /&gt;
* Samstag 20.11.2010 - BarCamp Darmstadt&lt;br /&gt;
&lt;br /&gt;
== Google Calendar ==&lt;br /&gt;
&amp;lt;googlecalendar&amp;gt;hackffm%40googlemail.com&amp;amp;mode=AGENDA&amp;lt;/googlecalendar&amp;gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Reloaded:_CO%E2%82%82-Laser_2.0&amp;diff=10353</id>
		<title>Reloaded: CO₂-Laser 2.0</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Reloaded:_CO%E2%82%82-Laser_2.0&amp;diff=10353"/>
				<updated>2018-12-03T23:01:02Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: /* Ideen */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''!! ACHTUNG !!''' ==&lt;br /&gt;
Der neue LASER ist noch nicht fertig eingerichtet. Die hier notierten Erfahrungen sind &amp;quot;work in progress&amp;quot;. Es fehlt noch an allen möglichen Sicherheitseinrichtungen. Daher ist der Laser noch nicht für die Allgemeinheit freigegegeben.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 100W-CO₂-Laser Quick and Dirty HOW_TO ==&lt;br /&gt;
Benötigte Software:&lt;br /&gt;
* RD Works (ausprobiert: V8.1.21) http://www.thunderlaser.com/laser-download&lt;br /&gt;
* evtl. Inkscape http://www.inkscape.org/de/&lt;br /&gt;
* Spezielles Visicut mit Thundelaser-Unterstützung: https://github.com/fablabnbg/VisiCut/releases&lt;br /&gt;
&lt;br /&gt;
== RD Works unter Linux installieren ==&lt;br /&gt;
&lt;br /&gt;
RD Works lässt sich unter Linux Mint mittels Wine installieren. Die Installationsdatei (.rar) auf dem Rechner speichern, entpacken und die RDWorksV8Setup8.01.21.exe mittels Rechtsklick &amp;quot;Öffnen mit... Wine-Windows-Programmstarter&amp;quot; installieren.&lt;br /&gt;
Die Software lässt sich dann aus dem Startmenü (Wine-Ordner) öffnen.&lt;br /&gt;
&lt;br /&gt;
Verbindung zum Laser: Windows-Rechner lassen sich per USB anschließen, unter Linux noch keine Erfahrung damit.&lt;br /&gt;
Unter Linux funktioniert die Verbindung per LAN. Dazu in der Software unter &amp;quot;Device -&amp;gt; Port Settings&amp;quot; ein neues Gerät anlegen &amp;quot;Add...&amp;quot; und &amp;quot;Web&amp;quot; auswählen und die IP-Adresse eingeben. '''Achtung: IP-Adresse noch nicht festgelegt.''' Der Laser muss anscheinend eine feste, manuell vergebene IP-Adresse bekommen. Bei den Tests wurde die IP 10.0.0.205 verwendet, diese kann aber jederzeit vom Router anderweitig vergeben werden. Eine feste Laser-IP muss noch eingerichtet werden. &lt;br /&gt;
&lt;br /&gt;
Die Verbindung zwischen Linux-Rechner und Lasersteuerung kam erst nach mehrmaligen Einstellungen und Ausprobieren zustande. Danach lief sie aber (zumindest einen Abend lang) stabil.&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Bedienung RDWorks ==&lt;br /&gt;
Es gibt ein paar &amp;quot;Handbuch&amp;quot;-PDFs zur Steuerung und zur Software.&lt;br /&gt;
Die Software bietet einfache Grafik- und Text-Funktionen. Außerdem kann man Pfade vereinfachen und einen Daten-Check (offene Pfade?) durchführen.&lt;br /&gt;
&lt;br /&gt;
== Materialeinstellungen ==&lt;br /&gt;
&lt;br /&gt;
Bisher ausprobiert: Sperrholz 4 mm, Hartfaserplatte und Acrylglas 3 mm&lt;br /&gt;
==== Referenz====&lt;br /&gt;
&lt;br /&gt;
==== Sperrholz 4mm====&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: #333; padding:12px; vertical-align:top; &amp;quot;&lt;br /&gt;
!Schnitt!!Power!!Speed!!Bild&lt;br /&gt;
|-&lt;br /&gt;
|Cut ||80 %||20|| Auf Anhieb durch&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Acrylglas 3mm====&lt;br /&gt;
Bei durchsichtigen Materialien am besten spiegelverkehrt gravieren!&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: #333; padding:12px; vertical-align:top; &amp;quot;&lt;br /&gt;
!Schnitt!!Power!!Speed!!Bild&lt;br /&gt;
|-&lt;br /&gt;
|Cut||40 %||20||Auf Anhieb durch&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Hartfaserplatte 5mm====&lt;br /&gt;
&lt;br /&gt;
==== MDF ====&lt;br /&gt;
&lt;br /&gt;
==== Spiegel Acryl 3mm ====&lt;br /&gt;
&lt;br /&gt;
==== Wellpappe ====&lt;br /&gt;
&lt;br /&gt;
==== Goldkarton, beidseitg matt-gold (gibs beim Real) ====&lt;br /&gt;
&lt;br /&gt;
==== [https://de.wikipedia.org/wiki/Polyoxymethylen POM 4mm] ====&lt;br /&gt;
&lt;br /&gt;
==== Glas gravieren ====&lt;br /&gt;
&lt;br /&gt;
== CO₂-Laser 100W ==&lt;br /&gt;
&lt;br /&gt;
=== Was noch gefixt werden muss ===&lt;br /&gt;
* Klappenschalter hat keine Rolle mehr&lt;br /&gt;
* Klappenschalter kann von Front-Panel-Schalter überbrückt werden&lt;br /&gt;
* Klappenschalter wirkt nicht direkt auf das Lasernetzteil&lt;br /&gt;
* Abluftschlauch an der Seite ist evtl. ungünstig&lt;br /&gt;
* Abluft per Nachlaufsteuerung anschliessen&lt;br /&gt;
* Klappen entscheppern/abdichten&lt;br /&gt;
* Sicherheitsschalter evtl. auch in Front-Tür bauen&lt;br /&gt;
* Schläuche für Wasser und Luft verlängern (andere kaufen)&lt;br /&gt;
&lt;br /&gt;
Laser Steuerung&lt;br /&gt;
[[Datei:LasetSteuerungChina.jpg|200px]]&lt;br /&gt;
&lt;br /&gt;
=== Was schon ein bisschen gefixt wurde===&lt;br /&gt;
* Steps/mm Einstellungen&lt;br /&gt;
** Dazu einfach RDWorks per USB verbinden, unter File/Vendor Settings (Passwort: RD8888) gibt es für jede Achse Steps/mm. (unter dem ... Menü können auch direkt gemessene vs. geschnittene Werte eingetragen werden und die Steps werden automatisch berechnet.&lt;br /&gt;
* Frontschlitze optisch undurchlässig machen - 17.09.18&lt;br /&gt;
&lt;br /&gt;
== Reverse Engineering ==&lt;br /&gt;
* Laser horcht auf UDP-Ports 50200 und 50207 - evtl. müssen sich diese aber im gleichen 255.255.255.0-Subnetz befinden: https://github.com/jnweiger/ruida-laser/blob/master/doc/protocol.md&lt;br /&gt;
* Weitere infos:&lt;br /&gt;
** https://wiki.fablab-nuernberg.de/w/Nova_35&lt;br /&gt;
** http://www.thunderlaser.com/laser-download&lt;br /&gt;
** https://github.com/kkaempf/ruida&lt;br /&gt;
** https://github.com/jnweiger/ruida-laser&lt;br /&gt;
** https://github.com/jnweiger/ruida-laser/blob/master/doc/laser-nova35-rdworks.md&lt;br /&gt;
&lt;br /&gt;
== Nützliches ==&lt;br /&gt;
Link für Infos zu Lasermaterial&lt;br /&gt;
http://atxhackerspace.org/wiki/Laser_Cutter_Materials&lt;br /&gt;
&lt;br /&gt;
==Fotos==&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;Foto 05.09.2018&amp;quot;&amp;gt;&lt;br /&gt;
Datei:Neuer_CO2-Laser.jpg|Neuer 100W-CO2-Laser&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Reloaded:_CO%E2%82%82-Laser_2.0&amp;diff=10267</id>
		<title>Reloaded: CO₂-Laser 2.0</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Reloaded:_CO%E2%82%82-Laser_2.0&amp;diff=10267"/>
				<updated>2018-09-10T20:56:00Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: /* CO₂-Laser 100W */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''!! ACHTUNG !!''' ==&lt;br /&gt;
Der neue LASER ist noch nicht fertig eingerichtet. Die hier notierten Erfahrungen sind &amp;quot;work in progress&amp;quot;. Es fehlt noch an allen möglichen Sicherheitseinrichtungen. Daher ist der Laser noch nicht für die Allgemeinheit freigegegeben.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 100W-CO₂-Laser Quick and Dirty HOW_TO ==&lt;br /&gt;
Benötigte Software:&lt;br /&gt;
* RD Works (ausprobiert: V8.1.21) http://www.thunderlaser.com/laser-download&lt;br /&gt;
* evtl. Inkscape http://www.inkscape.org/de/&lt;br /&gt;
&lt;br /&gt;
== RD Works unter Linux installieren ==&lt;br /&gt;
&lt;br /&gt;
RD Works lässt sich unter Linux Mint mittels Wine installieren. Die Installationsdatei (.rar) auf dem Rechner speichern, entpacken und die RDWorksV8Setup8.01.21.exe mittels Rechtsklick &amp;quot;Öffnen mit... Wine-Windows-Programmstarter&amp;quot; installieren.&lt;br /&gt;
Die Software lässt sich dann aus dem Startmenü (Wine-Ordner) öffnen.&lt;br /&gt;
&lt;br /&gt;
Verbindung zum Laser: Windows-Rechner lassen sich per USB anschließen, unter Linux noch keine Erfahrung damit.&lt;br /&gt;
Unter Linux funktioniert die Verbindung per LAN. Dazu in der Software unter &amp;quot;Device -&amp;gt; Port Settings&amp;quot; ein neues Gerät anlegen &amp;quot;Add...&amp;quot; und &amp;quot;Web&amp;quot; auswählen und die IP-Adresse eingeben. '''Achtung: IP-Adresse noch nicht festgelegt.''' Der Laser muss anscheinend eine feste, manuell vergebene IP-Adresse bekommen. Bei den Tests wurde die IP 10.0.0.205 verwendet, diese kann aber jederzeit vom Router anderweitig vergeben werden. Eine feste Laser-IP muss noch eingerichtet werden. &lt;br /&gt;
&lt;br /&gt;
Die Verbindung zwischen Linux-Rechner und Lasersteuerung kam erst nach mehrmaligen Einstellungen und Ausprobieren zustande. Danach lief sie aber (zumindest einen Abend lang) stabil.&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Bedienung RDWorks ==&lt;br /&gt;
Es gibt ein paar &amp;quot;Handbuch&amp;quot;-PDFs zur Steuerung und zur Software.&lt;br /&gt;
Die Software bietet einfache Grafik- und Text-Funktionen. Außerdem kann man Pfade vereinfachen und einen Daten-Check (offene Pfade?) durchführen.&lt;br /&gt;
&lt;br /&gt;
== Materialeinstellungen ==&lt;br /&gt;
&lt;br /&gt;
Bisher ausprobiert: Sperrholz 4 mm, Hartfaserplatte und Acrylglas 3 mm&lt;br /&gt;
==== Referenz====&lt;br /&gt;
&lt;br /&gt;
==== Sperrholz 4mm====&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: #333; padding:12px; vertical-align:top; &amp;quot;&lt;br /&gt;
!Schnitt!!Power!!Speed!!Bild&lt;br /&gt;
|-&lt;br /&gt;
|Cut ||80 %||20|| Auf Anhieb durch&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Acrylglas 3mm====&lt;br /&gt;
Bei durchsichtigen Materialien am besten spiegelverkehrt gravieren!&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: left; color: #333; padding:12px; vertical-align:top; &amp;quot;&lt;br /&gt;
!Schnitt!!Power!!Speed!!Bild&lt;br /&gt;
|-&lt;br /&gt;
|Cut||40 %||20||Auf Anhieb durch&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Hartfaserplatte 5mm====&lt;br /&gt;
&lt;br /&gt;
==== MDF ====&lt;br /&gt;
&lt;br /&gt;
==== Spiegel Acryl 3mm ====&lt;br /&gt;
&lt;br /&gt;
==== Wellpappe ====&lt;br /&gt;
&lt;br /&gt;
==== Goldkarton, beidseitg matt-gold (gibs beim Real) ====&lt;br /&gt;
&lt;br /&gt;
==== [https://de.wikipedia.org/wiki/Polyoxymethylen POM 4mm] ====&lt;br /&gt;
&lt;br /&gt;
==== Glas gravieren ====&lt;br /&gt;
&lt;br /&gt;
== CO₂-Laser 100W ==&lt;br /&gt;
&lt;br /&gt;
=== Was noch gefixt werden muss ===&lt;br /&gt;
* Klappenschalter hat keine Rolle mehr&lt;br /&gt;
* Klappenschalter kann von Front-Panel-Schalter überbrückt werden&lt;br /&gt;
* Klappenschalter wirkt nicht direkt auf das Lasernetzteil&lt;br /&gt;
* Abluftschlauch an der Seite ist evtl. ungünstig&lt;br /&gt;
* Frontschlitze optisch undurchlässig machen&lt;br /&gt;
* Abluft per Nachlaufsteuerung anschliessen&lt;br /&gt;
* Klappen entscheppern/abdichten&lt;br /&gt;
* Sicherheitsschalter evtl. auch in Front-Tür bauen&lt;br /&gt;
* Schläuche für Wasser und Luft verlängern (andere kaufen)&lt;br /&gt;
&lt;br /&gt;
Laser Steuerung&lt;br /&gt;
[[Datei:LasetSteuerungChina.jpg|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Was schon ein bisschen gefixt wurde===&lt;br /&gt;
* Steps/mm Einstellungen&lt;br /&gt;
** Dazu einfach RDWorks per USB verbinden, unter File/Vendor Settings (Passwort: RD8888) gibt es für jede Achse Steps/mm. (unter dem ... Menü können auch direkt gemessene vs. geschnittene Werte eingetragen werden und die Steps werden automatisch berechnet.&lt;br /&gt;
&lt;br /&gt;
== Ideen ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Fotos==&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;Foto 05.09.2018&amp;quot;&amp;gt;&lt;br /&gt;
Datei:Neuer_CO2-Laser.jpg|Neuer 100W-CO2-Laser&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Protoworx_BB_One&amp;diff=10113</id>
		<title>Protoworx BB One</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Protoworx_BB_One&amp;diff=10113"/>
				<updated>2018-08-06T18:33:23Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: /* Toolchain Einrichten */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Datei:Protoworx BB One 2016-10-26 18-35.jpg|500px]]&lt;br /&gt;
&lt;br /&gt;
== Toolchain Einrichten ==&lt;br /&gt;
&lt;br /&gt;
1. Aktuell Slic3r downloaden:&lt;br /&gt;
&lt;br /&gt;
https://github.com/prusa3d/Slic3r/releases&lt;br /&gt;
&lt;br /&gt;
2. Konfigurationsdatei für PETG hier downloaden und importieren&lt;br /&gt;
&lt;br /&gt;
[[Datei:Space_bb1_petg_201708.zip ]]‎&lt;br /&gt;
Die Konfigurationen (es handelt sich um ein Bundle mit Drucker, Druckeinstellungen und Extrudr PETG) haben dann den Namen space_bbone_****&lt;br /&gt;
&lt;br /&gt;
== Cura (3.0.4)==&lt;br /&gt;
&lt;br /&gt;
Settings-&amp;gt;Printer-&amp;gt;Add Printer...&amp;lt;br&amp;gt;&lt;br /&gt;
Custom-&amp;gt;Custom FDM Printer&lt;br /&gt;
&lt;br /&gt;
[[Datei:MachineSettings.PNG|600px]]&lt;br /&gt;
&lt;br /&gt;
Als Namen am besten &amp;quot;B B One HackFFM&amp;quot; nehmen. Er verwendet von den die ersten Buchstaben als Vorsilbenakkronym für die Dateinamen also &amp;quot;BBOH_&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Datei:Bbonehackffm_sidebar_01.PNG]] [[Datei:Bbonehackffm_sidebar_02.PNG]]&lt;br /&gt;
&lt;br /&gt;
== Mit Slic3r G-Code generieren ==&lt;br /&gt;
&lt;br /&gt;
1. Wichtig!! Das heruntergeladen Profil im Slic3r auswählen (ähnlich dem Bild). &lt;br /&gt;
&lt;br /&gt;
2. STL Datei öffnen.&lt;br /&gt;
&lt;br /&gt;
3. G-Code speichern.&lt;br /&gt;
 &lt;br /&gt;
[[Datei:Screen Shot 2016-11-15 at 22.16.25.png|500px]]&lt;br /&gt;
&lt;br /&gt;
== G-Code Drucken ==&lt;br /&gt;
Zum Drucken muss die G-Code Datei via Repetier Server Web Interface hochgeladen werden.&lt;br /&gt;
Hierzu die folgende URL mit ein Browser öffnen:&lt;br /&gt;
http://bbone-hackffm:3344&lt;br /&gt;
&lt;br /&gt;
Wichtig!! Bitte erst alle Reste von vorherigen Druck entfernen.&lt;br /&gt;
&lt;br /&gt;
Im Repetier Web Interface auf Drucken Symbol der Datei drücken.&lt;br /&gt;
&lt;br /&gt;
Nachfolgende Schritte macht der Drucker von alleine:&lt;br /&gt;
* Der Drucker beginnt erst mit dem aufheizen der Druckplatte.&lt;br /&gt;
* Anschließend werden alle Endpunkte zum Nullen der Position angefahren.&lt;br /&gt;
* Drucker fährt nun in die Mitte und wartet bis das Heizelement heiss genug ist.&lt;br /&gt;
* Wenn die eingestellte Temperatur erreicht wurde fängt der Drucker an zu drucken.&lt;br /&gt;
&lt;br /&gt;
== Material ==&lt;br /&gt;
Bitte nur PETG für diesen Drucker verwenden.&amp;lt;br&amp;gt;&lt;br /&gt;
PETG benötigt weniger Kühlung als PLA und der Lüfter ist sehr schwach.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Kategorie:Werkzeug]] [[Kategorie:3D Drucker]]&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=SAMLAIR_Airbrush_Chamber&amp;diff=10108</id>
		<title>SAMLAIR Airbrush Chamber</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=SAMLAIR_Airbrush_Chamber&amp;diff=10108"/>
				<updated>2018-07-30T21:03:55Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''SAMLAIR''' Box is a handy chamber for ''airbrushing'' built from an IKEA Samla Box and other IKEA components.&lt;br /&gt;
It utilizes two 120mm PC FANs to create an airflow and suck paint particles away from you and into a filter.&lt;br /&gt;
Optionally it includes freely positoned ''lighting'', tool ''storage'' and a turn ''table'' for convenience.&lt;br /&gt;
&lt;br /&gt;
[[Datei:Samlair panorama.jpg]]&lt;br /&gt;
&lt;br /&gt;
The cost depends on how much spare materials you have and how many features you want but in general should be around 30€&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''You will need:'''&lt;br /&gt;
&lt;br /&gt;
1x 22litre IKEA Samla Box (39x28x28)&lt;br /&gt;
&lt;br /&gt;
2x Plywood (4mm) A4&lt;br /&gt;
&lt;br /&gt;
2x PC FAN 120mm (12V)&lt;br /&gt;
&lt;br /&gt;
4x M4 Screw 40mm&lt;br /&gt;
&lt;br /&gt;
8x M4 Hexnut + Washers&lt;br /&gt;
&lt;br /&gt;
~250x150mm Steel Mesh (should  be magnetic, check before you buy)&lt;br /&gt;
&lt;br /&gt;
Strips of Filter Material (I used material from a vacuumer)&lt;br /&gt;
&lt;br /&gt;
~8 Neodymium Magnets (strong enough to keep the filter material in place)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Optional (Turntable)&lt;br /&gt;
&lt;br /&gt;
1x IKEA &amp;quot;Oleby&amp;quot; &lt;br /&gt;
&lt;br /&gt;
1x 8mm Inner diameter ball bearing&lt;br /&gt;
&lt;br /&gt;
4+ Felt Gliders&lt;br /&gt;
&lt;br /&gt;
Optional (Light)&lt;br /&gt;
&lt;br /&gt;
LED-Berg Light Dots&lt;br /&gt;
&lt;br /&gt;
24V Power Supply (the one that comes with LED BERG is not Powerful enough)&lt;br /&gt;
&lt;br /&gt;
Linear Regulator 24V-&amp;gt;12V (so you can use the FANs and the light with the same power supply)&lt;br /&gt;
&lt;br /&gt;
4x 30mm washer&lt;br /&gt;
&lt;br /&gt;
4x Neodymium Magnet Disc (strong enought to hold a Washer through the box wall. I used 20mm diameter, 2mm thickness)&lt;br /&gt;
&lt;br /&gt;
IKEA Trassla Cable Organizers &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Optional (Storage)&lt;br /&gt;
&lt;br /&gt;
1x Ikea Samla Lid (for 22l)&lt;br /&gt;
&lt;br /&gt;
4x Ikea Samla Closing Latch&lt;br /&gt;
&lt;br /&gt;
1x Ikea Samla Tool Insert&lt;br /&gt;
&lt;br /&gt;
[[Datei:Samlair_Back.zip]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:SAMLAIR PivotPin.zip]]&lt;br /&gt;
&lt;br /&gt;
'''Instructions''':&lt;br /&gt;
&lt;br /&gt;
1. First lasercut the two plywood sheets according to the .svg file attached (it has 2 layers, one for each sheet).&lt;br /&gt;
&lt;br /&gt;
2. Then mark the cutouts for the fan holes in the bottom of the Samla Box. I have melted through the box with a hot iron since cutting the PP material is very awkward. If you do the same, make sure that everything is well ventilated since there will be a lot of unhealthy fumes.&lt;br /&gt;
&lt;br /&gt;
3. While you are at it, also drill the 4mm holes into the Samla bottom at the positions they have been cut in the plywood (I used a metal drillbit)&lt;br /&gt;
&lt;br /&gt;
4. Next you can attach the PC fans to the lasercut base with the standard screws that are usually included with the fans.&lt;br /&gt;
&lt;br /&gt;
5. Depending on if you want light or not, you need to attach your regulator and the appropriate wires to this base aswell. The Ledberg Dots I used had detachable wires that made this part relatively convenient despite the fact that I shortened a few of the wires to have less clutter in the box afterwards.&lt;br /&gt;
&lt;br /&gt;
6. As soon as you know where your power supply wires will come out of the box, also drill a hole there. Optionally you could use some sort of socket if you have that available.&lt;br /&gt;
&lt;br /&gt;
7. Attach the metal mesh to the &amp;quot;back&amp;quot; of the square-hole plywood sheet. I simply used some tape to secure it on all sides.&lt;br /&gt;
&lt;br /&gt;
[[Datei:Filter_mesh.jpg]]&lt;br /&gt;
&lt;br /&gt;
8. Now you can align the plywood parts and the bottom of the box and screw everything together with the M4 screws, and hexnuts. Dont forget to thread the powersupply wire out first, as well as all wires that will power the LEDs.&lt;br /&gt;
&lt;br /&gt;
[[Datei:Samlair_Backview.jpg]]&lt;br /&gt;
&lt;br /&gt;
9. Attaching filters to the mesh is done by holding them on with magnets.&lt;br /&gt;
&lt;br /&gt;
10. To allow for variable light positioning, use the gluepads included with the Ledberg to attach the 30mm washers. You can now position the lights by holding them through the Samla's wall with magnets.&lt;br /&gt;
&lt;br /&gt;
[[Datei:Light_side.jpg]]&lt;br /&gt;
&lt;br /&gt;
11. For the turntable, drill a hole big enough for the outer diameter of the ball bearing into the center of the Ikea Oleby board and an&lt;br /&gt;
8mm hole into the side of the Samla at a position where the table can still turn. Click in the printed pivot and press fit your ball&lt;br /&gt;
bearing into the board.&lt;br /&gt;
&lt;br /&gt;
[[Datei:Samlair_Pivot_pin.jpg]]&lt;br /&gt;
&lt;br /&gt;
12. Lastly you can neaten up cable lenghts and hide cables with the included guides or use cable ties and Ikea Trassla to organize the box...&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Samlair_Pivot_pin.jpg&amp;diff=10107</id>
		<title>Datei:Samlair Pivot pin.jpg</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Samlair_Pivot_pin.jpg&amp;diff=10107"/>
				<updated>2018-07-30T21:03:34Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=SAMLAIR_Airbrush_Chamber&amp;diff=10106</id>
		<title>SAMLAIR Airbrush Chamber</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=SAMLAIR_Airbrush_Chamber&amp;diff=10106"/>
				<updated>2018-07-30T21:02:08Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''SAMLAIR''' Box is a handy chamber for ''airbrushing'' built from an IKEA Samla Box and other IKEA components.&lt;br /&gt;
It utilizes two 120mm PC FANs to create an airflow and suck paint particles away from you and into a filter.&lt;br /&gt;
Optionally it includes freely positoned ''lighting'', tool ''storage'' and a turn ''table'' for convenience.&lt;br /&gt;
&lt;br /&gt;
[[Datei:Samlair panorama.jpg]]&lt;br /&gt;
&lt;br /&gt;
The cost depends on how much spare materials you have and how many features you want but in general should be around 30€&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''You will need:'''&lt;br /&gt;
&lt;br /&gt;
1x 22litre IKEA Samla Box (39x28x28)&lt;br /&gt;
&lt;br /&gt;
2x Plywood (4mm) A4&lt;br /&gt;
&lt;br /&gt;
2x PC FAN 120mm (12V)&lt;br /&gt;
&lt;br /&gt;
4x M4 Screw 40mm&lt;br /&gt;
&lt;br /&gt;
8x M4 Hexnut + Washers&lt;br /&gt;
&lt;br /&gt;
~250x150mm Steel Mesh (should  be magnetic, check before you buy)&lt;br /&gt;
&lt;br /&gt;
Strips of Filter Material (I used material from a vacuumer)&lt;br /&gt;
&lt;br /&gt;
~8 Neodymium Magnets (strong enough to keep the filter material in place)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Optional (Turntable)&lt;br /&gt;
&lt;br /&gt;
1x IKEA &amp;quot;Oleby&amp;quot; &lt;br /&gt;
&lt;br /&gt;
1x 8mm Inner diameter ball bearing&lt;br /&gt;
&lt;br /&gt;
4+ Felt Gliders&lt;br /&gt;
&lt;br /&gt;
Optional (Light)&lt;br /&gt;
&lt;br /&gt;
LED-Berg Light Dots&lt;br /&gt;
&lt;br /&gt;
24V Power Supply (the one that comes with LED BERG is not Powerful enough)&lt;br /&gt;
&lt;br /&gt;
Linear Regulator 24V-&amp;gt;12V (so you can use the FANs and the light with the same power supply)&lt;br /&gt;
&lt;br /&gt;
4x 30mm washer&lt;br /&gt;
&lt;br /&gt;
4x Neodymium Magnet Disc (strong enought to hold a Washer through the box wall. I used 20mm diameter, 2mm thickness)&lt;br /&gt;
&lt;br /&gt;
IKEA Trassla Cable Organizers &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Optional (Storage)&lt;br /&gt;
&lt;br /&gt;
1x Ikea Samla Lid (for 22l)&lt;br /&gt;
&lt;br /&gt;
4x Ikea Samla Closing Latch&lt;br /&gt;
&lt;br /&gt;
1x Ikea Samla Tool Insert&lt;br /&gt;
&lt;br /&gt;
[[Datei:Samlair_Back.zip]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:SAMLAIR PivotPin.zip]]&lt;br /&gt;
&lt;br /&gt;
'''Instructions''':&lt;br /&gt;
&lt;br /&gt;
1. First lasercut the two plywood sheets according to the .svg file attached (it has 2 layers, one for each sheet).&lt;br /&gt;
&lt;br /&gt;
2. Then mark the cutouts for the fan holes in the bottom of the Samla Box. I have melted through the box with a hot iron since cutting the PP material is very awkward. If you do the same, make sure that everything is well ventilated since there will be a lot of unhealthy fumes.&lt;br /&gt;
&lt;br /&gt;
3. While you are at it, also drill the 4mm holes into the Samla bottom at the positions they have been cut in the plywood (I used a metal drillbit)&lt;br /&gt;
&lt;br /&gt;
4. Next you can attach the PC fans to the lasercut base with the standard screws that are usually included with the fans.&lt;br /&gt;
&lt;br /&gt;
5. Depending on if you want light or not, you need to attach your regulator and the appropriate wires to this base aswell. The Ledberg Dots I used had detachable wires that made this part relatively convenient despite the fact that I shortened a few of the wires to have less clutter in the box afterwards.&lt;br /&gt;
&lt;br /&gt;
6. As soon as you know where your power supply wires will come out of the box, also drill a hole there. Optionally you could use some sort of socket if you have that available.&lt;br /&gt;
&lt;br /&gt;
7. Attach the metal mesh to the &amp;quot;back&amp;quot; of the square-hole plywood sheet. I simply used some tape to secure it on all sides.&lt;br /&gt;
&lt;br /&gt;
[[Datei:Filter_mesh.jpg]]&lt;br /&gt;
&lt;br /&gt;
8. Now you can align the plywood parts and the bottom of the box and screw everything together with the M4 screws, and hexnuts. Dont forget to thread the powersupply wire out first, as well as all wires that will power the LEDs.&lt;br /&gt;
&lt;br /&gt;
[[Datei:Samlair_Backview.jpg]]&lt;br /&gt;
&lt;br /&gt;
9. Attaching filters to the mesh is done by holding them on with magnets.&lt;br /&gt;
&lt;br /&gt;
10. To allow for variable light positioning, use the gluepads included with the Ledberg to attach the 30mm washers. You can now position the lights by holding them through the Samla's wall with magnets.&lt;br /&gt;
&lt;br /&gt;
[[Datei:Light_side.jpg]]&lt;br /&gt;
&lt;br /&gt;
11. For the turntable, drill a hole big enough for the outer diameter of the ball bearing into the center of the Ikea Oleby board and an&lt;br /&gt;
8mm hole into the side of the Samla at a position where the table can still turn. Click in the printed pivot and press fit your ball&lt;br /&gt;
bearing into the board.&lt;br /&gt;
&lt;br /&gt;
12. Lastly you can neaten up cable lenghts and hide cables with the included guides or use cable ties and Ikea Trassla to organize the box...&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Samlair_Backview.jpg&amp;diff=10105</id>
		<title>Datei:Samlair Backview.jpg</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Samlair_Backview.jpg&amp;diff=10105"/>
				<updated>2018-07-30T21:01:30Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Light_side.jpg&amp;diff=10104</id>
		<title>Datei:Light side.jpg</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Light_side.jpg&amp;diff=10104"/>
				<updated>2018-07-30T20:59:22Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Filter_mesh.jpg&amp;diff=10103</id>
		<title>Datei:Filter mesh.jpg</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Filter_mesh.jpg&amp;diff=10103"/>
				<updated>2018-07-30T20:57:39Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=SAMLAIR_Airbrush_Chamber&amp;diff=10102</id>
		<title>SAMLAIR Airbrush Chamber</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=SAMLAIR_Airbrush_Chamber&amp;diff=10102"/>
				<updated>2018-07-30T20:56:22Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''SAMLAIR''' Box is a handy chamber for ''airbrushing'' built from an IKEA Samla Box and other IKEA components.&lt;br /&gt;
It utilizes two 120mm PC FANs to create an airflow and suck paint particles away from you and into a filter.&lt;br /&gt;
Optionally it includes freely positoned ''lighting'', tool ''storage'' and a turn ''table'' for convenience.&lt;br /&gt;
&lt;br /&gt;
[[Datei:Samlair panorama.jpg]]&lt;br /&gt;
&lt;br /&gt;
The cost depends on how much spare materials you have and how many features you want but in general should be around 30€&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''You will need:'''&lt;br /&gt;
&lt;br /&gt;
1x 22litre IKEA Samla Box (39x28x28)&lt;br /&gt;
&lt;br /&gt;
2x Plywood (4mm) A4&lt;br /&gt;
&lt;br /&gt;
2x PC FAN 120mm (12V)&lt;br /&gt;
&lt;br /&gt;
4x M4 Screw 40mm&lt;br /&gt;
&lt;br /&gt;
8x M4 Hexnut + Washers&lt;br /&gt;
&lt;br /&gt;
~250x150mm Steel Mesh (should  be magnetic, check before you buy)&lt;br /&gt;
&lt;br /&gt;
Strips of Filter Material (I used material from a vacuumer)&lt;br /&gt;
&lt;br /&gt;
~8 Neodymium Magnets (strong enough to keep the filter material in place)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Optional (Turntable)&lt;br /&gt;
&lt;br /&gt;
1x IKEA &amp;quot;Oleby&amp;quot; &lt;br /&gt;
&lt;br /&gt;
1x 8mm Inner diameter ball bearing&lt;br /&gt;
&lt;br /&gt;
4+ Felt Gliders&lt;br /&gt;
&lt;br /&gt;
Optional (Light)&lt;br /&gt;
&lt;br /&gt;
LED-Berg Light Dots&lt;br /&gt;
&lt;br /&gt;
24V Power Supply (the one that comes with LED BERG is not Powerful enough)&lt;br /&gt;
&lt;br /&gt;
Linear Regulator 24V-&amp;gt;12V (so you can use the FANs and the light with the same power supply)&lt;br /&gt;
&lt;br /&gt;
4x 30mm washer&lt;br /&gt;
&lt;br /&gt;
4x Neodymium Magnet Disc (strong enought to hold a Washer through the box wall. I used 20mm diameter, 2mm thickness)&lt;br /&gt;
&lt;br /&gt;
IKEA Trassla Cable Organizers &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Optional (Storage)&lt;br /&gt;
&lt;br /&gt;
1x Ikea Samla Lid (for 22l)&lt;br /&gt;
&lt;br /&gt;
4x Ikea Samla Closing Latch&lt;br /&gt;
&lt;br /&gt;
1x Ikea Samla Tool Insert&lt;br /&gt;
&lt;br /&gt;
[[Datei:Samlair_Back.zip]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:SAMLAIR PivotPin.zip]]&lt;br /&gt;
&lt;br /&gt;
'''Instructions''':&lt;br /&gt;
&lt;br /&gt;
1. First lasercut the two plywood sheets according to the .svg file attached (it has 2 layers, one for each sheet).&lt;br /&gt;
&lt;br /&gt;
2. Then mark the cutouts for the fan holes in the bottom of the Samla Box. I have melted through the box with a hot iron since cutting the PP material is very awkward. If you do the same, make sure that everything is well ventilated since there will be a lot of unhealthy fumes.&lt;br /&gt;
&lt;br /&gt;
3. While you are at it, also drill the 4mm holes into the Samla bottom at the positions they have been cut in the plywood (I used a metal drillbit)&lt;br /&gt;
&lt;br /&gt;
4. Next you can attach the PC fans to the lasercut base with the standard screws that are usually included with the fans.&lt;br /&gt;
&lt;br /&gt;
5. Depending on if you want light or not, you need to attach your regulator and the appropriate wires to this base aswell. The Ledberg Dots I used had detachable wires that made this part relatively convenient despite the fact that I shortened a few of the wires to have less clutter in the box afterwards.&lt;br /&gt;
&lt;br /&gt;
6. As soon as you know where your power supply wires will come out of the box, also drill a hole there. Optionally you could use some sort of socket if you have that available.&lt;br /&gt;
&lt;br /&gt;
7. Attach the metal mesh to the &amp;quot;back&amp;quot; of the square-hole plywood sheet. I simply used some tape to secure it on all sides.&lt;br /&gt;
&lt;br /&gt;
8. Now you can align the plywood parts and the bottom of the box and screw everything together with the M4 screws, and hexnuts. Dont forget to thread the powersupply wire out first, as well as all wires that will power the LEDs.&lt;br /&gt;
&lt;br /&gt;
9. Attaching filters to the mesh is done by holding them on with magnets.&lt;br /&gt;
&lt;br /&gt;
10. To allow for variable light positioning, use the gluepads included with the Ledberg to attach the 30mm washers. You can now position the lights by holding them through the Samla's wall with magnets.&lt;br /&gt;
&lt;br /&gt;
11. For the turntable, drill a hole big enough for the outer diameter of the ball bearing into the center of the Ikea Oleby board and an&lt;br /&gt;
8mm hole into the side of the Samla at a position where the table can still turn. Click in the printed pivot and press fit your ball&lt;br /&gt;
bearing into the board.&lt;br /&gt;
&lt;br /&gt;
12. Lastly you can neaten up cable lenghts and hide cables with the included guides or use cable ties and Ikea Trassla to organize the box...&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Samlair_Back.zip&amp;diff=10101</id>
		<title>Datei:Samlair Back.zip</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Samlair_Back.zip&amp;diff=10101"/>
				<updated>2018-07-30T20:55:53Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:SAMLAIR_PivotPin.zip&amp;diff=10100</id>
		<title>Datei:SAMLAIR PivotPin.zip</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:SAMLAIR_PivotPin.zip&amp;diff=10100"/>
				<updated>2018-07-30T20:53:59Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Samlair_Back.svg&amp;diff=10099</id>
		<title>Datei:Samlair Back.svg</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Samlair_Back.svg&amp;diff=10099"/>
				<updated>2018-07-30T20:51:52Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Samlair_panorama.jpg&amp;diff=10098</id>
		<title>Datei:Samlair panorama.jpg</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Samlair_panorama.jpg&amp;diff=10098"/>
				<updated>2018-07-30T20:49:15Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=SAMLAIR_Airbrush_Chamber&amp;diff=10097</id>
		<title>SAMLAIR Airbrush Chamber</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=SAMLAIR_Airbrush_Chamber&amp;diff=10097"/>
				<updated>2018-07-30T20:39:36Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: Die Seite wurde neu angelegt: „The '''SAMLAIR''' Box is a handy chamber for ''airbrushing'' built from an IKEA Samla Box and other IKEA components. It utilizes two 120mm PC FANs to create an…“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''SAMLAIR''' Box is a handy chamber for ''airbrushing'' built from an IKEA Samla Box and other IKEA components.&lt;br /&gt;
It utilizes two 120mm PC FANs to create an airflow and suck paint particles away from you and into a filter.&lt;br /&gt;
Optionally it includes freely positoned ''lighting'', tool ''storage'' and a turn ''table'' for convenience.&lt;br /&gt;
&lt;br /&gt;
The cost depends on how much spare materials you have and how many features you want but in general should be around 30€&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''You will need:'''&lt;br /&gt;
&lt;br /&gt;
1x 22litre IKEA Samla Box (39x28x28)&lt;br /&gt;
2x Plywood (4mm) A4&lt;br /&gt;
2x PC FAN 120mm (12V)&lt;br /&gt;
4x M4 Screw 40mm&lt;br /&gt;
8x M4 Hexnut + Washers&lt;br /&gt;
~250x150mm Steel Mesh (should  be magnetic, check before you buy)&lt;br /&gt;
Strips of Filter Material (I used material from a vacuumer)&lt;br /&gt;
~8 Neodymium Magnets (strong enough to keep the filter material in place)&lt;br /&gt;
&lt;br /&gt;
Optional (Turntable)&lt;br /&gt;
1x IKEA &amp;quot;Oleby&amp;quot; &lt;br /&gt;
1x 8mm Inner diameter ball bearing&lt;br /&gt;
4+ Felt Gliders&lt;br /&gt;
&lt;br /&gt;
Optional (Light)&lt;br /&gt;
LED-Berg Light Dots&lt;br /&gt;
24V Power Supply (the one that comes with LED BERG is not Powerful enough)&lt;br /&gt;
Linear Regulator 24V-&amp;gt;12V (so you can use the FANs and the light with the same power supply)&lt;br /&gt;
4x 30mm washer&lt;br /&gt;
4x Neodymium Magnet Disc (strong enought to hold a Washer through the box wall. I used 20mm diameter, 2mm thickness)&lt;br /&gt;
IKEA Trassla Cable Organizers &lt;br /&gt;
&lt;br /&gt;
Optional (Storage)&lt;br /&gt;
1x Ikea Samla Lid (for 22l)&lt;br /&gt;
4x Ikea Samla Closing Latch&lt;br /&gt;
1x Ikea Samla Tool Insert&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Instructions''':&lt;br /&gt;
&lt;br /&gt;
1. First lasercut the two plywood sheets according to the .svg file attached (it has 2 layers, one for each sheet).&lt;br /&gt;
&lt;br /&gt;
2. Then mark the cutouts for the fan holes in the bottom of the Samla Box. I have melted through the box with a hot iron since cutting the PP material is very awkward. If you do the same, make sure that everything is well ventilated since there will be a lot of unhealthy fumes.&lt;br /&gt;
&lt;br /&gt;
3. While you are at it, also drill the 4mm holes into the Samla bottom at the positions they have been cut in the plywood (I used a metal drillbit)&lt;br /&gt;
&lt;br /&gt;
4. Next you can attach the PC fans to the lasercut base with the standard screws that are usually included with the fans.&lt;br /&gt;
&lt;br /&gt;
5. Depending on if you want light or not, you need to attach your regulator and the appropriate wires to this base aswell. The Ledberg Dots I used had detachable wires that made this part relatively convenient despite the fact that I shortened a few of the wires to have less clutter in the box afterwards.&lt;br /&gt;
&lt;br /&gt;
6. As soon as you know where your power supply wires will come out of the box, also drill a hole there. Optionally you could use some sort of socket if you have that available.&lt;br /&gt;
&lt;br /&gt;
7. Attach the metal mesh to the &amp;quot;back&amp;quot; of the square-hole plywood sheet. I simply used some tape to secure it on all sides.&lt;br /&gt;
&lt;br /&gt;
8. Now you can align the plywood parts and the bottom of the box and screw everything together with the M4 screws, and hexnuts. Dont forget to thread the powersupply wire out first, as well as all wires that will power the LEDs.&lt;br /&gt;
&lt;br /&gt;
9. Attaching filters to the mesh is done by holding them on with magnets.&lt;br /&gt;
&lt;br /&gt;
10. To allow for variable light positioning, use the gluepads included with the Ledberg to attach the 30mm washers. You can now position the lights by holding them through the Samla's wall with magnets.&lt;br /&gt;
&lt;br /&gt;
11. For the turntable, drill a hole big enough for the outer diameter of the ball bearing into the center of the Ikea Oleby board and an&lt;br /&gt;
8mm hole into the side of the Samla at a position where the table can still turn. Click in the printed pivot and press fit your ball&lt;br /&gt;
bearing into the board.&lt;br /&gt;
&lt;br /&gt;
12. Lastly you can neaten up cable lenghts and hide cables with the included guides or use cable ties and Ikea Trassla to organize the box...&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Projekte&amp;diff=10096</id>
		<title>Projekte</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Projekte&amp;diff=10096"/>
				<updated>2018-07-30T20:36:02Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: /* Abgeschlossene Projekte */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&lt;br /&gt;
== Info Sammlung ==&lt;br /&gt;
* [[ESP32_with_OLED|ESP32 Module mit integriertem OLED Display]]&lt;br /&gt;
* [[Heltec Wifi LoRa 32]]&lt;br /&gt;
* [[DataTransferWebRaspberryArduino]]&lt;br /&gt;
* [[RaspberryGPIOSerial]]&lt;br /&gt;
* [[Kameramodule fuer uC]]&lt;br /&gt;
* [[Bluetooth-Modul HC-05]]&lt;br /&gt;
* [[Arduino / C Programmierung Grundlagen]]&lt;br /&gt;
&lt;br /&gt;
== Laufende Projekte ==&lt;br /&gt;
* [[DesignerEsszimmerLampe]]&lt;br /&gt;
* [[HoloDings]]&lt;br /&gt;
* [[FPV-Auto]]&lt;br /&gt;
* [[LoRaWAN]]&lt;br /&gt;
* [[AVRProgrammer]]&lt;br /&gt;
* [[EXCISS]]&lt;br /&gt;
* [[Elektronische_Bassflöte|Elektronische Bassflöte Version 2.0]]&lt;br /&gt;
* [[Elektronische_Bassflöte|Elektronische Bassflöte Version 1.5]]&lt;br /&gt;
* [[LineCamPrinter]]&lt;br /&gt;
* [[OmnibotWebcontrol]]&lt;br /&gt;
* [[Space Robot Experimental aka SpaceREx]]&lt;br /&gt;
* [[Elektronisch gesteuerte grosse Bassquerfloete]]&lt;br /&gt;
* [[Elektronisch gesteuerte kleine Bassquerfloete]]&lt;br /&gt;
* [[Spider UFO]] (Ufo von [[SpaceInLasers_3.0]])&lt;br /&gt;
* [[ReaktiveRadioLight|Reaktivlicht auf NRF24L01+ Basis]]&lt;br /&gt;
* [[OpenBuilds Fräse|OpenBuilds Fräse]]&lt;br /&gt;
* [[Trash.Cache]]&lt;br /&gt;
* [[Bricks]]&lt;br /&gt;
* [[Space_Shuttle]]&lt;br /&gt;
&lt;br /&gt;
== Projekte im Planungsstadium ==&lt;br /&gt;
* [[Stickmaschine]] - Crowdfunding im Mai 2016 zur Anschaffung eines ''CrowdStitchers''&lt;br /&gt;
* [[Raum 2.0 - PHASE 2]]&lt;br /&gt;
* [[SNES-4-Space]] (Super Nintendo Entertainment System)&lt;br /&gt;
* [[hackffmhome|Startseite des Hackerspaces]]&lt;br /&gt;
* [[ATmega-Assembler-Lehrgang]]&lt;br /&gt;
* [[Geocache]]&lt;br /&gt;
* [[IR_Reaktivlicht]]&lt;br /&gt;
* [[Ultimaker - ALU]]&lt;br /&gt;
* [[Einrichtung]]&lt;br /&gt;
* [[Orscheler Seifenkistenrennen]]&lt;br /&gt;
* [[PCB Ätzresist tschüss Laser Apparat]]&lt;br /&gt;
&lt;br /&gt;
== Abgeschlossene Projekte ==&lt;br /&gt;
* [[SAMLAIR Airbrush Chamber]]&lt;br /&gt;
* [[Flaschenlampe]]&lt;br /&gt;
* [[ESP8266 Internet Button]]&lt;br /&gt;
* [[CloudBox]]&lt;br /&gt;
* [[SpaceInLasers_3.0]] auf der [[Make Rhein-Main 2017]]&lt;br /&gt;
** [[Spider UFO]]&lt;br /&gt;
*** [[UFO]]&lt;br /&gt;
* [[SpaceInLasers|SpaceInLasers 2.0]]&lt;br /&gt;
* [[BrickUsingMultipleModules]]&lt;br /&gt;
* [[Barcode Scanner Hack]]&lt;br /&gt;
* [[Wackelbildprotokollator]]&lt;br /&gt;
* [[Do It Yourself Slider für Zeitraffer und Videoaufnahmen|Do It Yourself Slider]]&lt;br /&gt;
* [[Rundbunt_Mini_WIFI|Rundbunt Mini WIFI]]&lt;br /&gt;
* [[Mikroturbine]]&lt;br /&gt;
* [[HackffmActivitySensors_MQTT]]&lt;br /&gt;
* [[BrettBoard|BrettBoard - Modulares Transport System (work in progress)]]&lt;br /&gt;
* [[Ultraschall Luftpumpe]]&lt;br /&gt;
* [[Raspberry PI Zero + nano USB WiFi Adapter mod ]]&lt;br /&gt;
* [[Gobo-Projektor]]&lt;br /&gt;
* [[ESP8266 mit Arduino programmieren]]&lt;br /&gt;
* [[SMD Tools]]&lt;br /&gt;
* [[HackFFM-Duino_Chime]]&lt;br /&gt;
* [[Raum 2.0 - PHASE 1]]&lt;br /&gt;
* [[Workshop BB-One]]&lt;br /&gt;
* [[Arduino 1.0.6 auf Raspberry Pi installieren]]&lt;br /&gt;
* [[Arduino Bootloader Programmer]]&lt;br /&gt;
* [[raspicam|USB-Webcam am Raspberry]]&lt;br /&gt;
* [[Raspberry Pi enable ttyS0]]&lt;br /&gt;
* [[Spulentraeger]]&lt;br /&gt;
* [[LED step-up converter with ATtiny85]]&lt;br /&gt;
* [[RPG Effect Templates]]&lt;br /&gt;
* [[PLA Flieger]]&lt;br /&gt;
* [[Rundbuntplasma|Plasmalampe mit LPD8806 und Raspberry]]&lt;br /&gt;
* [[Rundbunt Mini]]&lt;br /&gt;
* [[Community 3d-Drucker]]&lt;br /&gt;
* [[Mehr_Dampf_Maus]]&lt;br /&gt;
* [[Mumomi_Electronic| mumomi RepRap Electronic]]&lt;br /&gt;
* [[Isolated_versatile_FTDI|Isolated versatile FTDI]]&lt;br /&gt;
* [[CO₂-Laser]]&lt;br /&gt;
* [[Jet Antrieb im Maßstab 1:87|Jet-Antrieb für einen Modelltruck im Maßstab 1:87]]&lt;br /&gt;
* [[Arduino_IDE_like_serial_monitor_in_the_Raspberry_Pi_shell|Arduino IDE like serial monitor in the Raspberry Pi shell]]&lt;br /&gt;
* [[Raspi_EDLC_UPS|Simple Uninterruptible Power Supply (UPS) for Raspberry Pi using Supercapacitors (EDLC)]] &lt;br /&gt;
* [[Processing250kBaud|Trick to use non-standard baud rates like 250kB under Linux with Processing]]&lt;br /&gt;
* [[DIY-Autoloader]]&lt;br /&gt;
* [[Hackffm³RepRap|hackffm³RepRap]]&lt;br /&gt;
* [[HanseBot|HanseBot I]]&lt;br /&gt;
* [[Podcast]]&lt;br /&gt;
* [[SimpleSDAudio|Arduino Library zur Audiowiedergabe mit SD-Karten]]&lt;br /&gt;
* [[Hackffm on Air|hackffm on Air]]&lt;br /&gt;
* [[HackffmActivitySensors]]&lt;br /&gt;
* [[LedBrett]]&lt;br /&gt;
* [[Merlin Extruder|Merlin Extruder]]&lt;br /&gt;
* [[Buntich]]&lt;br /&gt;
* [[Git Benutzen]]&lt;br /&gt;
* [[DIY Mikroskop| DIY Mikroskop]]&lt;br /&gt;
* [[WMFRA45|Webmontag 45]]&lt;br /&gt;
* [[Mendel_Upgrade|Ikea Mendel Upgrade]]&lt;br /&gt;
* [[Hackerspace Ffm Stempel und T-Shirts]]&lt;br /&gt;
* [[Drawbot@MfK]]&lt;br /&gt;
* [[@MfK]]&lt;br /&gt;
* [[3D Drucker für Wöhlerschule]] (3 Wochen)&lt;br /&gt;
* [[3D-Drucker mit AUGE.de]] (7 Monate)&lt;br /&gt;
* [[3D-Drucker für MfK]] (2 Monate)&lt;br /&gt;
* [[Raumsuche|Raum 1.0]] (12 Monate)&lt;br /&gt;
* [[Hackerspace Flyer]] (7 Wochen)&lt;br /&gt;
* [[Wikimediawettbewerb]]&lt;br /&gt;
* [[Bristlebots]] (MfK, TEDxYouth)&lt;br /&gt;
&lt;br /&gt;
== Eingestellte Projekte ==&lt;br /&gt;
* [[HACKFFM-Server]]&lt;br /&gt;
* [[Community 3d-Drucker 2.0]]&lt;br /&gt;
* [[RGB-Pipe]]&lt;br /&gt;
* [[Fail Button]]&lt;br /&gt;
* [[Ultraschall GPS]]&lt;br /&gt;
* [[Neuland Taskforce]]&lt;br /&gt;
* [[Airsoft_Pellet_Bitmaps_(build_blog)|Airsoft Pellet Bitmaps (build blog)]]&lt;br /&gt;
&lt;br /&gt;
[[Kategorie:Projekte|!]]&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Protoworx_BB_One&amp;diff=9945</id>
		<title>Protoworx BB One</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Protoworx_BB_One&amp;diff=9945"/>
				<updated>2018-06-25T19:13:18Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: /* G-Code Drucken */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Datei:Protoworx BB One 2016-10-26 18-35.jpg|500px]]&lt;br /&gt;
&lt;br /&gt;
== Toolchain Einrichten ==&lt;br /&gt;
&lt;br /&gt;
1. Aktuell Slic3r downloaden:&lt;br /&gt;
&lt;br /&gt;
https://github.com/prusa3d/Slic3r/releases&lt;br /&gt;
&lt;br /&gt;
2. Konfigurationsdatei für PETG hier downloaden und importieren&lt;br /&gt;
&lt;br /&gt;
[[Datei:Space_bb1_petg_201708.zip ]]‎&lt;br /&gt;
&lt;br /&gt;
== Cura (3.0.4)==&lt;br /&gt;
&lt;br /&gt;
Settings-&amp;gt;Printer-&amp;gt;Add Printer...&amp;lt;br&amp;gt;&lt;br /&gt;
Custom-&amp;gt;Custom FDM Printer&lt;br /&gt;
&lt;br /&gt;
[[Datei:MachineSettings.PNG|600px]]&lt;br /&gt;
&lt;br /&gt;
Als Namen am besten &amp;quot;B B One HackFFM&amp;quot; nehmen. Er verwendet von den die ersten Buchstaben als Vorsilbenakkronym für die Dateinamen also &amp;quot;BBOH_&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Datei:Bbonehackffm_sidebar_01.PNG]] [[Datei:Bbonehackffm_sidebar_02.PNG]]&lt;br /&gt;
&lt;br /&gt;
== Mit Slic3r G-Code generieren ==&lt;br /&gt;
&lt;br /&gt;
1. Wichtig!! Das heruntergeladen Profil im Slic3r auswählen (ähnlich dem Bild). &lt;br /&gt;
&lt;br /&gt;
2. STL Datei öffnen.&lt;br /&gt;
&lt;br /&gt;
3. G-Code speichern.&lt;br /&gt;
 &lt;br /&gt;
[[Datei:Screen Shot 2016-11-15 at 22.16.25.png|500px]]&lt;br /&gt;
&lt;br /&gt;
== G-Code Drucken ==&lt;br /&gt;
Zum Drucken muss die G-Code Datei via Repetier Server Web Interface hochgeladen werden.&lt;br /&gt;
Hierzu die folgende URL mit ein Browser öffnen:&lt;br /&gt;
http://bbone-hackffm:3344&lt;br /&gt;
&lt;br /&gt;
Wichtig!! Bitte erst alle Reste von vorherigen Druck entfernen.&lt;br /&gt;
&lt;br /&gt;
Im Repetier Web Interface auf Drucken Symbol der Datei drücken.&lt;br /&gt;
&lt;br /&gt;
Nachfolgende Schritte macht der Drucker von alleine:&lt;br /&gt;
* Der Drucker beginnt erst mit dem aufheizen der Druckplatte.&lt;br /&gt;
* Anschließend werden alle Endpunkte zum Nullen der Position angefahren.&lt;br /&gt;
* Drucker fährt nun in die Mitte und wartet bis das Heizelement heiss genug ist.&lt;br /&gt;
* Wenn die eingestellte Temperatur erreicht wurde fängt der Drucker an zu drucken.&lt;br /&gt;
&lt;br /&gt;
== Material ==&lt;br /&gt;
Bitte nur PETG für diesen Drucker verwenden.&amp;lt;br&amp;gt;&lt;br /&gt;
PETG benötigt weniger Kühlung als PLA und der Lüfter ist sehr schwach.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Kategorie:Werkzeug]] [[Kategorie:3D Drucker]]&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	<entry>
		<id>https://hackerspace-ffm.de/wiki/index.php?title=Datei:Space_bb1_petg_201708.zip&amp;diff=9910</id>
		<title>Datei:Space bb1 petg 201708.zip</title>
		<link rel="alternate" type="text/html" href="https://hackerspace-ffm.de/wiki/index.php?title=Datei:Space_bb1_petg_201708.zip&amp;diff=9910"/>
				<updated>2018-06-18T21:29:20Z</updated>
		
		<summary type="html">&lt;p&gt;LeandraChristine: LeandraChristine lud eine neue Version von Datei:Space bb1 petg 201708.zip hoch&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeandraChristine</name></author>	</entry>

	</feed>