Zimtschnecken – Cinnamon Rolls

Gestern hat Mathias Zimtschnecken gebacken. Sehr lecker, sehr gehaltvoll.

ZutatenZimtschnecken

Hefeteig:
2 Pck. Trockenhefe
1 Tasse Wasser
180 g Butter
200 ml Milch
2 Eier
100 g Zucker
2 TL Salz
800 g Mehl

Füllung:
150 g Rosinen
etwas trockener Sherry
120 g Butter
200 g Walnüsse
200 g Zucker
4 EL Zimt (gemahlen)

Zuckerguß:
140 g Butter
150 g Puderzucker
150 g Vanille-Sirup (Monin)

Zubereitung

Hefeteig:Kneten
Hefe in lauwarmem Wasser mit 1 TL Zucker auflösen und gehen lassen. Butter mit Milch in einem Topf erwärmen, bis Butter schmilzt. Eier mit Zucker mischen, Butter und Milch zugeben, dann die Hefemischung, Salz und Mehl unterrühren. Alles zu einem weichen Hefeteig verkneten.
Schüssel zudecken und an einem warmen Ort gehen lassen (ca 90 Minuten).

Füllung vorbereiten:Fuellung
Rosinen mit Sherry aufkochen. Butter in einem Topf schmelzen lassen. Eine große Auflaufform mit etwas Butter einfetten und mit etwas Zucker ausstreuen. Walnüsse zerbröseln. Zucker mit Zimt mischen.

 

NudelholzSchnecken herstellen:
Hefeteig zu einem Rechteck von etwa 50 x 35 cm ausrollen.

 

 

 

RolleMit geschmolzener Butter bestreichen, diese mit einem Pinsel verteilen. Zimt-Zucker darauf streuen, Rosinen und Nüsse darauf verteilen. Den Teig von der Längsseite her aufrollen.

 

schneidenDie Rolle in 12 Scheiben schneiden. Die 12 Schnecken in die Auflaufform legen, so daß die Spiralform oben sichtbar ist.
Zugedeckt weitere 45 Minuten gehen lassen.
Anschließend im vorgeheizten Ofen bei 150°C für ca 25 – 30 Minuten hellbraun backen, bis sie durch sind (Garprobe mit Holzstäbchen).

 

Zuckerguß:Topping
Butter in einem Topf schmelzen. Mit Puderzucker und Vanille-Sirup verrühren. Die Mischung mit einem Löffel über die Schnecken in der Form verteilen. Etwas abkühlen lassen.

 

Guten Appetit!
Die Schnecken schmecken frisch noch warm am besten, lassen sich aber auch hervorragend einfrieren. In diesem Fall kann man sie vor dem Verzehr mit der Mikrowelle aufwärmen.

Communication

Bread-board with 2 Arduinos

During the last months you didn’t hear much about the Walker. Well, during New Year vacation I was much occupied with family and 31C3. But development did proceed. After sorting out servos and basic Inverse Kinematic I am now focusing on setting up the full framework of components communication between them.

I wanted to have the framework in place before getting deeper into motion control and sensor reading because:

  • I want to avoid heavy porting from a test environment.
  • I want to make sure the design fits to an environment with multiple modules.
  • I want to experience any issues because of delayed communication as early as possible.
  • I want to develop a framework that allows tracking of joint and sensor values in real time. I’ll have to develop some test functions at all, so make sure to keep them for testing in later stages.

communication_sketch

The walker has a core module connecting to sensors and controlling body and  movement. Each pair of legs is controlled by it’s own segment module. It controls the leg servos, the tilt servo and reads the contact sensors in the leg tips. Core and segments communicate through serial lines, with the core as master.

On the Mac runs a control application written in Java. It provides a graphical interface for debugging and controlling the Walker. The link between the Mac and the Walker uses Bluetooth. That was the easiest one, the Mac already provides Bluetooth, for the Walker I use a HC-05 Bluetooth module. It provides a standard serial profile and is rather  simple to use. It is connected to the core module over a serial line.

I had much fun with Java on Unix talking asynchronously with device files, or rather not. I also did test HC-04 BT Slave modules, but they don’t talk with Macs, which I found out after many futile tries.

This draft document describes the protocols, control lines and message formats.

The frame-work is working, next steps will be a little bit of fine tuning, adding the touch down sensor electronics. The modules are still Arduino based, but the Eagle drawings are already under progress.