Creator Alchemist: A Different Kind of Blueprint
Technology, creativity, and the journey between.
This isn’t a portfolio—it’s a place where I make sense of the work I do and the life I live.
Creator Alchemist is the name I’ve given to that process.
Whether it’s designing firmware, prototyping electronics, or writing about the lessons learned, I explore microcontrollers, embedded systems, and the ways technology can shape meaningful experiences—and maybe even illuminate the world around us.
Pull up a chair. Let’s see what’s possible.
Want the full story? → [About Me]
Search The Site
Explore The Threads
Pickens From The Blog
{Recent}
Announcement – End of Year : Good Bye 2024
Exciting News - Hold on to Your Hats As this year comes to an end, (Well, already over into the new year) I’ve been thinking about how busy it’s been and how much has been accomplished. It’s been a year full of learning, building, and making progress on so many...
Streamlining MCU Development with POGO Pins
Streamlining Your MCU Designs with POGO Pins What Are POGO Pins? POGO pins, or spring-loaded pins, are small connectors designed for temporary connections. Each pin is made up of a plunger, barrel, and spring mechanism that presses the pin against a contact point....
Embracing the Open Road : Moments Between Here and There
This image of an open road, a single cloud, and endless sky reminds us to slow down, tune into the present moment, and find peace in the vast simplicity of what’s around us.
The Power of Being Intentional in a Messy World
The world we dream of isn’t some distant fantasy—it starts within us, in the small, deliberate choices we make each day. Every act of kindness, every bit of patience, creates ripples that build a lifescape of possibilities for something greater.
Announcement – Introducing the LumiEase Basic Dimmer Module (Beta Release)
Exciting News - Hold on to Your Hats I’m thrilled to announce the beta release of the LumiEase Basic Dimmer Module! If you’ve ever found LEDs too overpowering for your model scenes, this module is here to change that. Designed to plug seamlessly into the LumiEase...
{For You – Roll of The Dice – Random}
Powering the PIC10F322 : Basic Power Supply Options
PIC10F322 Power Supply : To power up the PIC10F322 and depending on how you are going to use it – you need some sort of power regulation circuit, that takes some input voltage and drops it to your desired voltage to drive the PIC10F322.
Setting Up the PIC10F322 System Clock: Default 8MHz Clock Speed and How to Change It
Understanding and Configuring the PIC10F322 System Clock Speed
Upon reset or power-on, the PIC10F322 microcontroller defaults to a system clock speed of 8MHz. This default setting remains until you modify it in your code.
Python Automation – Code Snippet – Return Text File Contents
This Python function will read and text file and return text file contents. #usage yourContentHolder = return_text_file_content(path to text file) def return_text_file_content(file): encoding_format = "utf-8" textDataFile = open(file, mode="r",encoding=...
Thoughts on Automation
Some Thoughts on Automation: Stop Doing Manual Tasks Do you find yourself spending too much time on repetitive manual tasks that add little to no value? Whether it's small tasks or larger ones, manual work that needs to be repeated over and over can feel like busy...
Alternating Blinking LEDs : Building on the Basics with the CORE MCU Framework
Alternating Blinking LEDs : Building on the Basics with the CORE MCU FrameworkFirst Things First: Setting Up the CircuitNow, Let’s Dive into the CodeWhat’s Happening Here?What Does It All Look Like?Why Start Here?A Dynamic Pattern GeneratorCore MCU Framework...