rocketscream / TinyReflowController

An all-in-one Arduino compatible reflow controller powered by ATtiny1634R
121 stars 64 forks source link

#ifdef should be #if #8

Open zambetti opened 4 years ago

zambetti commented 4 years ago

I believe I found a small mistake...

Line 298 is:

ifdef VERSION == 2

Should be:

if VERSION == 2

rocketscream commented 4 years ago

Good catch.