A big thanks to the following:

I completed all the electronics of this paper with the help of Maddie, Michaela, Hunter, Fab Lab Wgtn - their sites can be found below. https://maddiejonesdesign.wordpress.com/?fbclid=IwAR0qroBRMYRobHE61ZrNXqkqcFRIOPyZ9jH7z3EBbGxVYtK_WCAQT9ziyVM https://opendigifabmicklawn.design.blog/ https://fablabwgtn.co.nz/ Will post the link to hunters blog when I receive it.

How I have contributed to open design

My project includes the principles of open design by using a previous open design project and adding value to the technology with designing a more visually appealing form. As I had no experience in coding or electronics prior to this paper, I iterated the original designs form as that was where my strengths lie. I … Continue reading How I have contributed to open design

Final neopixel circuit and code

My final code is below. You will need RTClib and Neopixel library by adafruit for this code to work. #include <Wire.h> #include <RTClib.h> #include <Adafruit_NeoPixel.h> #define PIN 8 #define PIXEL 60 Adafruit_NeoPixel strip = Adafruit_NeoPixel(PIXEL, PIN, NEO_GRB + NEO_KHZ800); DS1307 RTC;// D103248237124 Establish clock object DateTime Clock; // Holds current clock time byte hourval, minuteval, … Continue reading Final neopixel circuit and code