Compare commits

...

5 Commits

4 changed files with 7 additions and 4 deletions

View File

@ -11,7 +11,7 @@ baseurl: "/"
url: "https://andrewconl.in"
author: Andrew Conlin
version: v25.1.U0301
version: v25.3.PU0306
defaults:
# blog

View File

@ -1,7 +1,8 @@
<br>
<div style="text-align: center;font-family: Geist Mono;font-size:small;">
<span class="growshrink">Be nice to each other!</span><br>
© {{ site.author }} 2023-2025 / All rights reverse engineered<br>
© {{ site.author }} 2023-2025<br>
All rights reverse engineered<br>
Last updated: {{ site.time }}<br>
<a href="https://git.andrewconl.in/andrew/tictoc/src/tag/{{ site.version }}/">{{ site.version }}</a>
<a href="https://git.andrewconl.in/andrew/site/src/tag/{{ site.version }}/">{{ site.version }}</a>
</div>

View File

@ -1,5 +1,5 @@
<h1><a href="/">andrewconl.in</a> <span style="color: #A89984;font-size:medium">is tinkering</span></h1>
<div>
<p style="font-size: x-large;"><a href="/blog">blog</a>&nbsp;&nbsp;&nbsp;<a href="/til">til</a>&nbsp;&nbsp;&nbsp;<a href="/projects">projects</a>&nbsp;&nbsp;&nbsp;<a href="/meta">meta</a>&nbsp;&nbsp;&nbsp;<a href="/archive">[archive]</a></p>
<p style="font-size: x-large;"><a href="/blog">blog</a>&nbsp;&nbsp;&nbsp;<a href="/til">til</a>&nbsp;&nbsp;&nbsp;<a href="/projects">projects</a>&nbsp;&nbsp;&nbsp;<a href="/meta">meta</a>&nbsp;&nbsp;&nbsp;<a href="/feed.xml">feed</a>&nbsp;&nbsp;&nbsp;<a href="/archive">[archive]</a></p>
</div>
<hr>

View File

@ -4,6 +4,8 @@ category: blog
title: Writing an OLED display driver in MicroZig
---
**Update 2025-03-06** / There is now an SDD1306 driver available in the [official MicroZig repository](https://github.com/ZigEmbeddedGroup/microzig/blob/main/drivers/display/ssd1306.zig).
# # Beginnings
Recently, I have been messing around with a Rapsberry Pi Pico. Initially, I started out with MicroPython, as this is what most of the documentation for working with the Pico uses. However, this was honestly a little boring, as I seem to end up doing every project in Python. I wanted something a little more engaging for my brain, a little *spicier*. It's Friday afternoon!