Boldport "The Cuttle" Arrived

published: August 17, 2016 — last modified: October 23, 2025

Today the new project from Boldport Club arrived. It is called “The Cuttle” and it is a minimal configuration of the ATMega328-PU microcontroller with minimal elements to get it running.

As usual the PCB is artfully designed in shape of a cuttlefish. Soldering was easy this time.

Here some photos of the project how it arrived and at the end the final version with all components soldered into place.

I also made a short video where you see the ATMega in action:

The source code for the LED effect shown in the video is very simple:

void setup() {
  DDRD = 0xff;
  PORTD = 0x0f;
}
void loop() {
  const uint8_t first = ((PORTD & 0x80) != 0) ? 1 : 0;
  PORTD = ((PORTD << 1) | first);
  delay(50);
}

More Posts

The 3D Printed Modular Lantern

Posted on 2023-01-17— 3D Printing, Projects

I designed a modular 19th‑century‑style lantern you can 3D print as a candlelight or expand into an LED street‑lamp stand. Read on for my glue‑free assembly, colour‑layer printing tips, and stand options — or jump to the Printables page for downloads and print instructions.

Read this post

Plant Watering Sensor Files

Posted on 2017-08-23— Common, Projects

I finally published all design files and documentation for my plant watering sensor project. The package includes PCB layouts and firmware, but this is an advanced build: it needs SMD reflow, Atmel Studio and an Atmel-ICE programmer. If you're interested, please read the full post and the GitHub repo for details.

Read this post

Use Enum with More Class!

Posted on 2019-07-29— C++, Improve your Code, Learn

I explain C++11 enum class: why it prevents name conflicts, how it compares to traditional enums and common workarounds, with practical Arduino-friendly examples. If you want clearer, safer enum usage in your interfaces, read the full post for code samples and simple best-practice guidance.

Read this post

Snowflake Component Side

Posted on 2017-11-14— Projects

I walk through assembling the component side of my snowflake panel, showing stencil-applied solder paste, placement of 105 resistors, capacitors, headers and chips, and sped-up hot-air soldering. I test the LEDs at the end — please read/watch the full post if you'd like the complete build and tips.

Read this post

Split Storage Boxes Update

Posted on 2021-04-10— 3D Printing, Projects

I recently updated my storage-boxes system to include split boxes so you can print larger containers or use small printer beds. I tested glued joints with PLA and PETG and added 12 new STL parts. Read the full post to see part numbers, joining tips, and where to download them.

Read this post

“Read SGP30” Command-Line Tool

Posted on 2020-12-19— Projects

I published a small command-line tool to read the Sensirion SGP30 air-quality sensor on a Raspberry Pi. I explain usage, options, and how to build and install the C tool so you can get JSON CO2/TVOC output. If it helps, please read the full post for details.

Read this post