Ben's Blog

self sustainability, wood ben February 16, 2020

The family is growing

We just acquired another cookstove. It is in excellent shape for a stove built in 1905, so much so that we couldn’t let it pass. Like we did with our Sweetheart, it’ll sit unused for a couple of years, and we’ll use that time to give it the bit of TLC it needs.

It’s quite beautiful and has many bells and whistles.

apple, self sustainability ben February 16, 2020

Cider in a Bottle

Our 2nd year making hard cider, we skipped one last year when the apple trees didn’t produce anything. Such are the whims of mother nature.

We did this one a little more “right” by transferring to a 2nd fermenter after a couple of months and by letting it age for 5 months total. It definitely helped refine the flavor and remove some of the less desirable tones.

As before we used our maple syrup to fuel the fermentation. It’s kind of a shame because the taste of maple syrup is completely lost in the process, I would love to have something mapley left. At the same time, it’s completely awesome that we are able to make hard cider with 100% local ingredients. And by local I mean right from our backyard. It may seem completely absurd to use maple syrup like this, we could sell it and buy many times its weight in refined cane sugar with the money. This isn’t what we’re after though, closing cycles as locally as possible is the end game, not making money. And so using maple syrup is the most sensical and harmonious thing we can do.

I commissioned labels from Robin, I would like to build up a portfolio of labels made from people I love to satisfy any future circumstances. This year we had deer go through apple trees during a ghost moon, and we had a press day heavy on yellow jackets.

Overall it’s really super nice that all these projects are well established these days. We are so much more relaxed going through the motions with experience under our belt. It’s still a lot of work, but at least we’re no longer worried we’re going to majorly fuck something up and ruin everything.

We’ll be sugaring soon, and we’ll have cider to drink while we boil the maple syrup we’ll use the make the cider. It’s the circle of life or something.

homestead automation, I.T. ben January 12, 2020

GPIO 2 Inverter

I figured out a way to turn our inverter on and off with a Pi so I can leave it off when Winter forces us to be frugal. It takes a little more than an amp hour just sitting there doing nothing, so I do like to turn it off. This capability will serve to automate the fridge in the future, before I do that though, I need to figure out a way to bring cold air from the outside into it. The idea is to have a logic which looks at outside temperature, solar status, and fridge temperature to decide if we just turn it on or if we can simply (and for less electricity) fan in cold air from the outside.

Running a fridge on the coldest months, when solar power is scarce, is doubly absurd.

building, self sustainability ben January 12, 2020

Protected: SugarHouse

This content is password-protected. To view it, please enter the password below.

miscellaneous ben January 12, 2020

Never seen a kid

go from bed to snow as fast as he does. Not 30 seconds pass from the warmth of his sheets to the blistery morning cold.

His new morning routine

aesthetics, I.T., plotters ben January 12, 2020

Plotter Trials

I’m getting closer to a very usable plotter, for now the prototype is serving all my plotting needs. Another prototype is in the works, this way I’ll be able to work on a plotter and keep another one for drawing. I keep finding ideas for really cool videos which I’m certain will make splashes online. I want to have my next steps figured out before I try to do just that. I know that at least the plotter build will be documented as a DYI project.

I found my birthday presents for the next 10 years

First trial with paint, I coded for “ink refill” capabilities for all instruments which require it. Obviously I’ve learned a few lessons here 🙂

I.T., plotters ben January 01, 2020

Protected: Learning about Cartesian coordinate systems to control the plotter

This content is password-protected. To view it, please enter the password below.

electronics, I.T. ben December 14, 2019

Raspberry Pi Servo Jitter

Here’s the final solution I came up with to finally get a servo motor to behave on a Pi. It may not seem like much but it took a lot of doing to gather all the right bits. This was tested with an SG90, SG92R, and an MG90S on a Pi Zero.

Scroll straight to the end for the solution.

The most common way for controlling a servo motor on a Pi with is through RPi.GPIO as such:

#!/usr/bin/python3
import RPi.GPIO as GPIO
import time

servo = 23

GPIO.setmode( GPIO.BCM )
GPIO.setup( servo, GPIO.OUT )

# info on frequency and PWM formula at https://rpi.science.uoit.ca/lab/servo/
pwm = GPIO.PWM( servo, 50 )
pwm.start( 2.5 )

print( "0 deg" )
pwm.ChangeDutyCycle( 2.5 )  # turn towards 0 degree
time.sleep( 3 )

print( "90 deg" )
pwm.ChangeDutyCycle( 7.5 )  # turn towards 90 degree
time.sleep( 3 )

print( "180 deg" )
pwm.ChangeDutyCycle( 12.5 ) # turn towards 180 degree
time.sleep( 3 )

pwm.stop()
GPIO.cleanup()

Stuff you might need for this to run:

sudo apt-get update && sudo apt-get install python3-rpi.gpio

It results in super jitter which is unacceptable for the holy mission of pen plotting.

As far as I understand, the jitter comes from the wave form RPi.GPIO produces for Pulse Width Modulation, which is made in software and so it’s not super stable (no dedicated resources to build it). From what I gather, pigpio is programmed to tap into the one hardware PWM that Pis have.

The solution thus is as such:

#!/usr/bin/python3
import RPi.GPIO as GPIO
import pigpio
import time

servo = 23

# more info at http://abyz.me.uk/rpi/pigpio/python.html#set_servo_pulsewidth

pwm = pigpio.pi()
pwm.set_mode(servo, pigpio.OUTPUT)

pwm.set_PWM_frequency( servo, 50 )

print( "0 deg" )
pwm.set_servo_pulsewidth( servo, 500 ) ;
time.sleep( 3 )

print( "90 deg" )
pwm.set_servo_pulsewidth( servo, 1500 ) ;
time.sleep( 3 )

print( "180 deg" )
pwm.set_servo_pulsewidth( servo, 2500 ) ;
time.sleep( 3 )

# turning off servo
pwm.set_PWM_dutycycle( servo, 0 )
pwm.set_PWM_frequency( servo, 0 )

Stuff you might need for this to run:

sudo apt-get update && sudo apt-get install python3-pigpio
sudo pigpiod

And the resulting super smooth motion and holds:

aesthetics, I.T., web development ben December 08, 2019

Fibonacci Assist

It’s been a while since I pushed a feature to Mandalagaba worthy of a post.

I just pushed a tool I call “Fibonacci Assist”. It’s meant to help you draw Fibonacci spirals by overlaying the proper framing based on the beginning of your penstroke.

I was reminded of the existence of this sequence and its ties to nature reading the most excellent children book: Swirl by Swirl. The book is simply magnificent and so I thought I’d do my part to help bring into the world more Fibonacci spirals.

I have yet to play with it using a stylus.

aesthetics, all out geekery, I.T. ben December 07, 2019

Fluid Dynamics Simulation

all out geekery, I.T. ben December 07, 2019

Nosy Monster Nosying & Monstering around

Still going strong

3D modeling / printing, aesthetics, I.T., plotters ben December 02, 2019

Plotting Plotters

Well so, I fell into a very deep rabbit hole. The world of pen plotters… A year in, I finally have some good results. After several prototypes of Gondola plotters (V-plotters) and regular tabletop plotters. I’ve homed in on a set of designs, hardware, electronics, and algorithms to think I can make a small difference in that world. I still need to iterate a little but I’m hoping to release each plotter as a DYI projects in 2020. Maybe I’ll even sell my making them for others. Of course there will be integrations with Mandalagaba because that just makes sense.

Now there are several such plotters one can buy or build for a wide range of prices. And they all have a very shitty software stack. This is where I believe I can make the biggest difference.

As with building houses, it’s enormously relieving to finally see into the real world a model you’ve been immersed in, CADing it for a year.

I’ll skip talking about the long series of challenges I ran into building this. It’s really, really nice to see a long plot finished to perfection knowing that finally, nothing is wrong. I’ve learned a lot along the way.

There’s a bazillion pen plotters on Thingiverse, I’ve used some of them as stepping stones until I was ready to finally make my own top to bottom. As I said, software is where I think I can make the biggest difference. I’m a Raspberry Pi aficionado, and this opens the door to a sophisticated software stack (web servers, HTML canvasses, format conversion, penstroke optimization, live link with Mandalagaba). I found not a single plotter using a Pi, in fact I found very few projects of anything using stepper motors with a Pi. I had to do some serious trail blazing to step a motor reliably.

Here is for example a pen stroke optimization algorithm I developed to speed up plotting.

 

The base, drawing penstrokes as they come. “Empty” travel going from one penstroke to the next without the pen drawing: ~36437 (relative pixels).

The next penstrokes is the closest. Empty travel ~15820, 0.43 compression ratio.

The next penstrokes is the closest, but consider its beginning as well as its end, draw the penstroke reversed if it was the end which was closest. Empty travel ~12467, 0.34 compression ratio.

 

Now for the eye candy 🙂

I could watch this for hours, and I did.

Of course the efficacy of this algorithm depends heavily on the model to be drawn. I found that anything coming from Mandalagaba tends to benefit enormously, especially tessellations. And it makes sense, for every penstroke drawn, the repetitions occur throughout the canvas and they show up in that order even if you drew in a very localized area. The example above comes from the most excellent turtletoy.net.

More to come very soon on the great world of plotters…

self sustainability, wood ben December 02, 2019

Wooden Snake

This is unfortunately not an improvement from my last attempt. The design is barely visible due to my poor choice of facing bark. Still, I’m trying to get better at this every year.

miscellaneous, trip to a new life ben November 18, 2019

Protected: One day we’ll build a house up there

This content is password-protected. To view it, please enter the password below.

I.T., maniacal paranoia ben November 17, 2019

Paranoia Through Inertia

I.T., maniacal paranoia ben November 10, 2019

Relinquish your own thoughts

Slowly but surely, we are foregoing self agency to algorithms.

2019 Gmail settings:

building, self sustainability ben October 31, 2019

Done with the Roofers

So far in building, I’ve been happy to contract out roofing to otherwise more capable people with better tools. It’s always notoriously difficult to get contractors to show up, roofers even more. And I get it, no one wants to do their work and so they have even more leverage than most contractors. They don’t care what your building schedule looks like, they only care to have work lined up on their own schedule and will say anything to keep it that way. Their incentive is to keep you waiting so you’re available for them when they have a gap. This year I had it waiting for them and getting strung along, I couldn’t afford it any longer with Winter right around the corner so I went ahead with my usual “screw it, I’ll just do it myself”.

All in all it’s not very difficult but there are a few tricks to pick up, and it is definitely physically hard and fairly dangerous.

I was quoted $2800 for this roof, it ended up costing $1100 and I spent an extra $200 on metal cutting tool I didn’t have, and $250 on climbing gear to be safer and because I want to climb trees for fun. It also “cost” me 2 and a half days of work. I can’t say I’m sad I had to do it myself for the savings and tools I got. The real silver lining though, is that I’ll never have to call a roofer ever again. I now possess the knowledge and the tools. Now that, is a freeing feeling :).

After this, I finally got to proceed with the siding which was long overdue. My dad who is the worst handyman I know (I learned all my swear words watching him with a hammer), came out and helped. I was very apprehensive going in, one of the unspoken worries of homesteading is when people of little manual ability decide they too want to have a homesteading experience and offer their help. He ended up doing really great and helped a lot. Agnes stained a whole bunch of boards, both saved me a lot of time in one day.

I laid shiplap diagonally for strength, we get high winds and this shed has 12′ walls to catch them with. I was ok compromising aesthetics for strength. It turns out it looks really good. We’re very pleased with the result.

I put the roof on right before a big rain, and I sided 1 wall right before a big wind. Right on time, not waiting for the roofers was the right decision, I could have been in trouble if I had: more water ruining the frame, the wind catching in the big sail that is the roof without any structural strength against shearing.

Previously I could hear the building move on little wind gusts, with only 1 wall sided with diagonal boards though, I did not hear a peep during strong gusts. Diagonal is the way :).

I’ll be pushing hard in the next few week ends to close it all up. There is a lot of work left and it really needs to be done before the snow invites itself to Vermont.

 

maple syrup, self sustainability, wood ben October 02, 2019

The impact of tapping Maple trees

building, self sustainability ben September 24, 2019

Sometimes when I’m perched 20ft up a roof

it hits me that every layer from the ground up to my feet was built by me. And then I wonder how high I could go if I just kept building.

apple, self sustainability ben September 14, 2019

Hard Cider

Rebel without a cause, but with a bin full of apples

Hisse et oh

Using refined cane sugar is not an option

And now we wait

building, self sustainability ben September 14, 2019

Another blocking day

3D modeling / printing, building, self sustainability ben September 13, 2019

How I build

Winter on a computer, Summer on a ladder.


building, self sustainability ben August 29, 2019

There it is, the final outline

I mentioned before the 2 things I enjoy most when building are discovering newly framed windows views, and seeing the outline of a building in the land.

I’ve been taking it at a reasonable pace building this sugarhouse, 4 hours here and there. It’s nice to not build until exhaustion. In some ways I’m slowing down from the frenetic pace of the past few years. I can’t keep working with a barbecue going and 2 kids jumping on the trampoline, signs of how nice life is becoming on our land. Let the good times roll.

 

Posts pagination

← Previous 1 … 20 21 22 … 52 Next →

This blog is solar powered

Interactive

Handwriting Capture
Mandalagaba
IPv6 link-local to MAC converter
IPv6 MAC to link-local converter
Markov Text Generation
Markov Word Generation
Markov Music Generation
Duplogrifier
Flood Fill Algorithms
Homestead Metrics
RGB Playground
Web Games

Categories

  • aesthetics111
    • plots54
    • specular holography6
  • Books3
  • I.T.202
    • 3D modeling / printing21
    • AI6
    • all out geekery36
    • electronics27
    • homestead automation6
    • maniacal paranoia25
    • plotters49
    • unix / linux29
    • video games4
    • web development29
    • web games3
  • Lego / Duplo67
  • life in the U.S.42
  • miscellaneous202
  • nature encounters114
  • old vinyls3
  • organs2
  • self sustainability560
    • agriculture105
    • apiculture38
    • apple20
    • building131
    • canning3
    • crochet6
    • foraging6
    • hunting10
    • maple syrup47
    • poultry39
    • preserving2
    • solar power28
    • water23
    • wood84
  • trip to a new life6
Theme by Bloompixel. Proudly Powered by WordPress