View allAll Photos Tagged Arduino,

I just finished my Breadboard Arduino, I programmed the chip with the blink example using a reugular Arduino.

Screwshield is a "wing-format" shield (a partial shield) of screw terminals for Arduino.

The arduino for the weather clock with a ethernet and protoyping shield.

 

More information: http://www.seancarney.ca/projects/weather-clock

A new version

 

A new version of the venerable Arduino Breakout Shield.

 

More info at make.rrrf.org/ab-1.4

So, this is the Arduino mood cue thing from the top. You wire up a potentiometer to a servo motor which then swivels the arm around. I'm getting a little bored of just wiring up and coding the things in the book so I decided to build on it and make something of my own.

Arduino Workshop at School of Design Mainz, 2009

 

Photographs by Sandy Pfaff

Our third Arduino 101 class at Tam Makers went really well. I taught this evening course with co-instructor Donald Day on Thursdays, from June 16 to 30, 2016, at the woodshop in Tam High School in Mill Valley.

 

We worked with an enthusiastic group of seven students, including adults with diverse backgrounds, as well as a couple high school students. Our partner Geo Monley worked both as a mentor and as a student during the hands-on sessions.

 

We started the class at 6pm, by giving students an overview of how circuits work. We then learned how to use a multimeter, how to solder electronics, and how to control rainbow-colored NeoPixel lights.

 

Students seemed to really enjoy this class and told us they learned a lot from it. Several expressed an interest in taking intermediate and advanced classes in the future. This is one of our first maker courses at Tam Makers, and we’re really happy that it is going so well; we look forward to teaching more classes in the fall.

 

View more photos of this Arduino course:

www.flickr.com/photos/fabola/albums/72157659914570948

 

Learn more about this Arduino 101 class:

www.tammakers.org/arduino-101/

 

Read our Arduino 101 Guide:

bit.ly/arduino-101-guide-june-2016

 

Check out our course slides:

bit.ly/arduino-101-slides-june-2016

 

Learn more about Tam Makers:

www.tammakers.org/

 

Preparacion Workshop Arduino

 

Preparacion Workshop Arduino

We taught a workshop on how to create interactive art with the Arduino platform at the Mill Valley Library on October 24, 2015.

 

We showed 9 students how to make lights blink, sounds play, motors move, and how to add more color with neopixel LEDs, as described in this online guide we created for the workshop:

bit.ly/arduino-101-guide

 

At the end of the workshop, we asked participants if they would like to this again, and the answer was a resounding yes! Participants told us they learned a lot from this workshop and would not only come back for future workshops, but also recommend this program to their friends.

 

Instructors for this workshop were Donald Day and Fabrice Florin, with support from Natalie and Jean Bolte. We are all members of Pataphysical Studios, the art collective behind the ‘Pataphysical Slot Machine’, our poetic oracle.

 

Come visit the exhibit this month! We’re open every Saturday and Sunday in October, from 1 to 5pm, in the downstairs conference room of the Mill Valley Library.

 

Special thanks to the Mill Valley Library and the Friends of the Library for making these workshops possible — especially Kristen Clarke, who helped us get the Arduino parts and set up for the workshop.

 

View more photos of the exhibit: www.flickr.com/photos/fabola/albums/72157659147117739

 

Preparacion Workshop Arduino

 

Preparacion Workshop Arduino

It is quite spooky when your arduino starts acting all paranormal after midnight.

 

Why would i turn on the red LED when i reach for the knife ?

 

It was after i was halfway dismanteling a test setup with a photocell when i discoverd this behaviour by accident.

 

There will be a perfectly scientific explenation to all of this.

 

But still :)

    

int h5=0;

 

void setup() // run once, when the sketch starts

{

pinMode(11, OUTPUT); // sets the digital pin as output

Serial.begin(9600);

 

}

   

void loop() // run over and over again

{

h5 = analogRead(0); // read the value from the sensor

if (h5>100)

{

digitalWrite(11,HIGH);

}

else

{

digitalWrite(11,LOW);

}

// analogWrite(11,h5);

// Serial.print(h5);

// delay(500);

}

Preparacion Workshop Arduino

 

Preparacion Workshop Arduino

What the Character Set of the Arduino's TFT is?

 

It's CP437.

 

Check the program at hdaniel67.blogspot.mx/2014/07/arduino-tft-is-cp437_29.html

 

¿Cuál es el conjunto de caracteres del TFT?

 

Es CP437.

Preparacion Workshop Arduino

 

Preparacion Workshop Arduino

3dprinted a case for a friends project/installation. Using arduino micro. Parts from adafruit

AD9850, Arduino, LT1253, DDS 1 to 30 MHz VFO

Arduino with Centipede Shield and 16 of 64 possible I/O attached to a breakout panel

This lovely little shield is the best way to add a small, colorful and bright display to any project. We took our popular 1.8" TFT breakout board and remixed it into an Arduino shield complete with microSD card slot and a 5-way joystick navigation switch (with a nice plastic knob)! Since the display uses only 4 pins to communicate and has its own pixel-addressable frame buffer, it can be used easily to add a display & interface without exhausting the memory or pins.

    

The 1.8" display has 128x160 color pixels. Unlike the low cost "Nokia 6110" and similar LCD displays, which are CSTN type and thus have poor color and slow refresh, this display is a true TFT! The TFT driver (ST7735R) can display full 18-bit color (262,144 shades!). And the LCD will always come with the same driver chip so there's no worries that your code will not work from one to the other.

    

The shield has the TFT display soldered on (it uses a delicate flex-circuit connector) as well as a ultra-low-dropout 3.3V regulator and a 3/5V level shifter so its safe to use with 5V Arduinos. We also had some space left over so we placed a microSD card holder (so you can easily load full color bitmaps from a FAT16/FAT32 formatted microSD card) and a 5-way navigation switch (left, right, up, down, select).

Preparacion Workshop Arduino

 

Preparacion Workshop Arduino

Arduino Heartbeat sensor, sends OSC messages over ethernet at every beat.

Now a video:: gallery.me.com/cpmartin#100259

 

I've been working on this on-and-off over a few months:

cmpercussion.blogspot.com/2009/07/heartbeat-sensor.html

 

And now I'm using it in a performance in Canberra!

www.lastmantodie.net

 

Preparacion Workshop Arduino

 

Preparacion Workshop Arduino

Preparacion Workshop Arduino

 

Preparacion Workshop Arduino

There is an Arduino in there some where

 

Includes

*Arduino Duemilanove

*Arduino/Seeeduino Harness

*ScrewShield

*Adafruit ProtoShield

*Sparkfun microSD Shield

*Sparkfun ADXL335 Triple Axis Accelerometer

 

Not a photo but a blender internal render output.

 

www.thingiverse.com/thing:817

Preparacion Workshop Arduino

 

Preparacion Workshop Arduino

Holding two red, blinking LEDs as eyes to show the speed and direction of the attached DC motor. The Motor is conceiled in a LEGO enclosure and attached to a LEGO wheel.

For my records, how to wire up the DS18B20 1 wire digital thermomenter (http://www.maxim-ic.com/quick_view2.cfm?qv_pk=2812) but using the two wire functionality here.

a limited-edition production run, now that 10,000 boards have been sold

Arduino and Internet of Everything

1 2 ••• 18 19 21 23 24 ••• 79 80