Wednesday, October 25, 2017

September to November 2017

First freezing day of Fall
Willow, from the Hitty swapCharlie with his NYC book

Sunday, July 30, 2017

July August 2017


Mouse from Wool Works
Cloth doll made from two cloth circles
Pattern bought from Cloth Doll Supply
Added fabric with sayings from Alice in Wonderland.
Printed cloth catbag and blue checked cloth, and star fabric in yo yo from 2017 Day With Dolls.

Mug Organizer

Friday, June 23, 2017

April - June 2017


Fourth of July Cat
Pattern by B. Amiura
Fourth of July Pin Doll
Pattern by Deanna Hogan


Cloth Doll Artistry which has been on Facebook the last few years will be closed on June 21, 2017.  I thank Connie McBride Johnson and Kat Lees for all the work they did.

Locker Hooked Rug, 28" x 28"
Locker Hooking, first project
Thank you Robin Campbell for my prize, the dollies can't wait to go shopping. Green angel, pattern by Deanna Hogan


Wednesday, March 22, 2017

Winter Jan-March 2017

Hooked rug, started about five years ago, finally finished.

I broke my rug hook and got a Ruth Moshimer one, I also got the locker hook, thought I'd try that style of rug making next.


Valentine Fairies, pattern by Deanna Hogan

CDA Challenge


Light snow Jan 6 2017

Monday, December 12, 2016

Thanksgiving to New Year 2017

Dollar Tree Elf all dressed up


Beccasine, Molly and me are ready for the holiday frenzy. Molly's new dress by Robin Campbell.

Saturday, October 22, 2016

Saturday, June 11, 2016

Wednesday, May 18, 2016

Sunday, February 14, 2016

Little Love Bears

Happy Valentine's Day
Bears made from a pattern in the Tilda Fairy Tale Wonderland book.

Sunday, January 17, 2016

Learning about photoresistors

I tried setting up a circuit that included a photoresistor and the expected outcome didn't happen.  OK, let's start with something simpler, let's test if the photoresistor is working.  I found several versions of this program and here is what I wrote (copied).  My first compile, missed a wiggly parenthesis.  After a successful compile I downloaded the code to my arduino.  Hmmm forgot a step, didn't go to tools and open the serial monitor, so I couldn't see the output.  Finally, got it together and the program ran successfully, so I knew I was using a working photoresistor.  Now I'll go back to the original program, Circuit 6 in the Vilros handbook and try again.

const int kPin_Photocell = A0;
void setup() {
  // put your setup code here, to run once:
    Serial.begin(9600);
}

void loop() {
  // put your main code here, to run repeatedly:

    int value = analogRead(kPin_Photocell);

    Serial.print("Analog Reading = ");
    Serial.println(value);
    if(value < 200){
      Serial.println(" - Dark");
    }else if (value < 400){
      Serial.println(" - Dim");
    }
    else if(value < 600){
      Serial.println(" - Light");
    }
    else if(value < 800){
      Serial.println(" - Bright");
    }
    else{
      Serial.println(" - Very Bright");
    }
      delay(1000);
}