diff --git a/_drafts/2021-05-01-custom_ts100_logo.md b/_drafts/2021-05-01-custom_ts100_logo.md new file mode 100644 index 0000000..2b3cb77 --- /dev/null +++ b/_drafts/2021-05-01-custom_ts100_logo.md @@ -0,0 +1,24 @@ +--- +title: Making a custom bootscreen for your TS100 Soldering Iron +date: 2022-02-02 +layout: post +image: /assets/blog/TS100/real.jpeg +--- + + + +There are a bunch of [posts](https://blog.dbrgn.ch/2017/9/5/creating-custom-ts100-logo-with-gimp/) online about how to add a custom bootscreen to a TS100 soldering iron. These things are great, if you get a little USB-C to jack adapter you can run them off a powerbank and they're tiny so you can keep them with you wherever you go. Which of course you should. + +I did have some trouble getting the image into the write format though, after messing around a little I settled on this command using ImageMagick: +```bash +convert image.png -depth 1 -monochrome BMP3:LOGOIN.BMP +``` +Then you can use `identify` to check that the metadata of the output is indeed 1-bit in depth. + +```bash +identify LOGOIN.BMP +``` + +![Designing my custom bootscreen in an Ipad app](/assets/blog/TS100/pixels.jpeg) + +![What it looks like on the iron](/assets/blog/TS100/real.jpeg) \ No newline at end of file diff --git a/_drafts/2023-05-01-custom_ts100_logo.md b/_drafts/2023-05-01-custom_ts100_logo.md deleted file mode 100644 index 0503a01..0000000 --- a/_drafts/2023-05-01-custom_ts100_logo.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -title: Making a custom bootscreen for your TS100 Soldering Iron -date: 2022-02-02 -layout: post -image: ---- - -The correct command is: - -```bash -convert Untitled.png -depth 1 -monochrome BMP3:LOGOIN.BMP && ls -l LOGOIN.BMP && identify LOGOIN. -``` \ No newline at end of file diff --git a/assets/blog/TS100/pixels.jpeg b/assets/blog/TS100/pixels.jpeg new file mode 100644 index 0000000..d7d4feb Binary files /dev/null and b/assets/blog/TS100/pixels.jpeg differ diff --git a/assets/blog/TS100/real.jpeg b/assets/blog/TS100/real.jpeg new file mode 100644 index 0000000..73330c4 Binary files /dev/null and b/assets/blog/TS100/real.jpeg differ