Printing Instructions Slicer configuration

Example of expert mode of you slicer configuration. For experts I keep it short 0.1mm layer height 100% infill 2 shells ABS filament good cooling while printing Some more details for the rest Material If you want to print ABS…

Cars, cars, cars …

List of cars that stuck in my mind … Subaru WRX STI Ferrari La Ferrari Ferrari 458 Italia Lamborghini Aventador LP 750-4 Superveloce BMW M4 P1 McLaren Porsche 918 Tesla 1967 Shelby Cobra The Marauder And some action 🙂

Sustainable, scalable 3D printed meat

Problem: 8% of the world“s water supply and one third of the world’s non-ice landmass is used for raising livestock for meat and leather. At least 18% of the greenhouse gases entering the atmosphere are from the livestock industry.Solution: Fundamentally…

DIY filament extrusion and extruders

Nowadays one of the biggest drawbacks in 3D printing is the relative high cost of filament, i.e. the 3D printer (thermo-)plastic, the “consumable” for your 3D printer. Prices for 3D printers have been continuously dropping, but filament prices did not…

Moto road trip plan

There are few experiences as thrilling as a motorcycle road trip through the Alps. This route takes you from Prague through some of the most spectacular mountain passes in Europe — a journey combining dramatic scenery, engineering marvels, and the…

Prague guide walk

View of Prague's Vltava River with boats, bridges, and historic buildings at sunset

Prague is one of Europe’s most beautifully preserved medieval cities, and it rewards walkers like almost nowhere else. This guide takes you on a full-day walking route through the heart of the city — from the grand boulevards of Nové…

Arduino Uno / MeOrion board error

In ase you getting similar error with Arduino 1.7.10 and Makeblock MeOrion (Arduino Uno) board then copy missing files (see error) to location c:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino\ Compile again and you should not get the error anymore.

Arduino light sensor

#include <Arduino.h> #include <Wire.h> #include <SoftwareSerial.h> #include <MeOrion.h> //double angle_rad = PI; //double angle_deg = 180.0/PI; MeLightSensor lightsensor_8(8); MeSerial se; void setup(){ Serial.begin(9600); } void loop(){ (lightsensor_8.read()); Serial.print(„CLS(0);“); Serial.print(„DR0;“); Serial.print(„DS32(30,90,’“); Serial.print(String(„Light: „)+lightsensor_8.aRead2()); Serial.println(„‚,1);“); delay(3000); }