Started this book last night. Jiddu Krishnamurti (May 11, 1895 – February 17, 1986) was an Indian born speaker and writer on philosophical and spiritual subjects, and was widely considered as a World Teacher. His subject matter included: psychological revolution, the nature of mind, meditation, inquiry, human relationships, and bringing about radical change in society. He constantly stressed the need for a revolution in the psyche of every human being and emphasized that such revolution cannot be brought about by any external entity, be it religious, political, or social. Books and documentary's are the main meal I have been gorging on over the last few months.
Interesting BBC documentary about the Universe, possible multiverse and implications of certain philosophical suggestions such as the 'Computer simulat Interesting short doc by Al Jazeera about robots, war and the relationship in America between technological advancement and military investment. We printed this out lovely fold-able exhibition pamphlet for The exhibition in The Crawford Gallery.
Thanks to Ms McGlynn for putting this piece together. #include <Stepper.h> // change this to the number of steps on your motor #define STEPS 100 // create an instance of the stepper class, specifying // the number of steps of the motor and the pins it's // attached to Stepper stepper(STEPS, 9, 10, 11, 12); // the previous reading from the analog input int previous = 0; const int buttonPin = 2; // the number of the pushbutton pin // variables will change: int buttonState = 0; // variable for reading the pushbutton status void setup() { // set the speed of the motor to 30 RPMs stepper.setSpeed(150); } void loop() { static unsigned long lastButtonTime = 0; static boolean lastButtonState = false; boolean newButtonState = digitalRead(buttonPin); unsigned long currentTime = millis(); // Make sure it has been at least 100 milliseconds since the last button change to filter out bounces if (newButtonState != lastButtonState && currentTime-lastButtonTime > 100) lastButtonTime = currentTime; lastButtonState = newButtonState; if (newButtonState) { // Fresh button press stepper.step(3000); delay(4*1000); // Wait X seconds stepper.step(-3000); } } Do I need to fully understand it?
|
Richard ForrestArtist, conversational addict, Archives
May 2014
Categories
All
|