Wireless communication with Arduino – Part 4

Recently I’ve been using Andrew Rapp’s XBee library for Arduino so that I can start to communicate with more than one radio module at a time. This is a crucial step, and as the screenshot below shows, now the code can also tell me the XBee’s address.

I found a great code example of how to display information from each XBee at this blog – it’s invaluable!

The next step is to take the data from each XBee and probably insert it into an array that gets passed to Grasshopper.

xbee_arduino_communication

A reading of Odense and the city’s new master plan

The current layout of Thomas B. Thriges Street in Odense has been shown to clearly not work. With the advent of the automobile came the expansion and upgrade of roads – once-quiet city spaces were soon overtaken by the roar of engines and horns. In the 1960s a roadway was installed in the heart of Odense to accommodate this new city inhabitant, and it became known as Thomas B. Thriges Street. By placing convenience of privatized travel over the serenity and character of Odense’s central square, city planners bisected the area, creating a disconnect between the two sides.
My visit to Odense last week confirmed what I had learned through research. Arriving at the site, I was immediately struck by the uncomfortable feeling of the street being so close to the area where pedestrians were walking. My first view of Sct. Albani Kirke was arranged through the proximity of roads, concrete and street signs, which did not impress any testament to the history of the site. The extreme conditions of the site made it impossible for me to imagine what stories the site might tell, despite the fascinating architecture of the church. The street, laying directly in front of the church, stopped me from approaching it and disrupted any sense of place the structure should have lent to the site. As I walked along the street, I stepped into the middle to take the “perfect” photo of the church – only to discover that while I was free of nearby taller obstacles, the ugly directional signs for the automobiles still hung directly in front of the church.
odense
Only recently has Odense has taken steps to rectify the problem of Thomas B. Thriges Street. A new master plan for the area has been developed that proposes to remove the street in an attempt to transform the area into an inviting, pedestrian-friendly place. Starting in the north at Østre Stationsgade and moving southward towards Sct. Albani Kirke and Odense Domkirke, a gradient of buildings will occupy part of the space, with larger, modern-looking buildings progressing to smaller, traditional buildings. The choice of progression is in response to allowing Odense to continue to develop as an important hub city in Denmark while preserving the historical dwellings that occupy the area. The Hans Christian Andersen Museum is a notable place surrounded by a specific atmosphere of old houses the reflects the time of the famous author. Underground parking beneath the buildings will serve to acknowledge the importance of the automobile to a city while preventing a noticeable change to the urban landscape.
My interest in the Thomas B. Thriges Street site lays in the area near the two churches. The area currently contains a small surface parking lot and a cobblestone area with a small historical ruin. The master plan states that the area will be occupied by two new commercial block buildings. I would like to remedy the dichotomy between this new built-up area and the two churches through an architectural intervention. Opportunities exist for an inhabitation of the proposed structures, or a completely new plan for the area.
The present way we build architecture has undergone a major change since the times of simple brick-and-mortar construction. Architects increasingly look to digital computation in the pursuit of novel building methods. One method involves the consideration of how we create forms that are influenced by and change with the environment. Neri Oxman, a researcher at the MIT Media Lab, talks about a separation existing between “what” a building senses and “how” it does so. Often architects will simply embed sensors into a building as a post-gesture rather than considering how the sensors lend themselves to the sensing elements of a building. Designing with attention to material choice can lead to exploring the role the designed material has in the creation of a “sensing” building. Through these exercises we can tweak the formal expression of a constructed space to unite it with another – in this case, the existing churches. Through careful attention to the way buildings and people sense their environment, I want to continue to expand on the notion of creating architecture that is informed by these actions.

Wireless communication with Arduino – Part 3

One of the Firefly devs actually responded to my earlier question and said I didn’t need the Firefly firmata on the Arduino if I was only using the Firefly serial read/write components. For now, this works, but I wonder if I will need to output data from Grasshopper to the Arduino at some point in the future. Possibly not, if the Arduino at the base station is only acting as an interface to the XBee coordinator radio. I will have to look into this.

XBee_3
The flex sensor as a wireless sensor. The wires going to the wireless sensor is only for power as I didn’t have a battery pack.
I used the following code to read the incoming serial data from the wireless sensor node:
void setup() {
  Serial.begin(9600);
}
void loop() {
  //make sure everything we need is in the buffer
  if (Serial.available() >= 21) {
    //look for the start byte
    if (Serial.read() == 0x7E) {
      //discard some bytes that we’re not using
      for (int i = 1; i < 19; i++) {
        byte discardByte = Serial.read();
      }
      //grab the two bytes that make up the analog value from the wireless sensor
      int analogMSB = Serial.read();
      int analogLSB = Serial.read();
      //convert to decimal to create the analog reading
      int analogReading = analogLSB + (analogMSB * 256);
      Serial.println(analogReading);
    }
  }
}
The following graphic shows how the data was used to create a concept of a hallway with moving walls. By using the inverse of the sensor data, I was able to work with two sets of data so that the walls of the hallway would react with each other. Eventually, I would like to introduce a second wireless sensor as another data source.
flexSensorToSurface_Day5_grasshopper
The result is shown below. As the flex sensor is bent, one wall extends outwards while the other recedes.
flexSensorToSurface_Day5_1flexSensorToSurface_Day5_2flexSensorToSurface_Day5_3

Wireless communication with Arduino – Part 2

Today I learned how to use a XBee as a standalone device, without an Arduino. This will be useful when building in 1:1 scale and needing to place sensors on a model that are spaced far apart. An Arduino is only needed at the coordinator XBee.
Also, I was able to successfully import the serial data from the XBee and bring it into a Grasshopper sketch by using Firefly components. The next step is to make sense of the data – currently it is garbled and showing as multiple varying values (see screenshot below). I’ve posted to the Firefly help forum in hopes of solving this, as processing the serial data from the XBee requires some code that is usually handled by the Arduino.
serialData
Quick Grasshopper sketch showing the serial data being read

Wireless communication with Arduino – Part 1

I’ve been using part of this week to sort through the various tech that I’d like to use in my projects, as a means of keeping the troubleshooting/learning time to a minimum so that I can focus on the architecture. The electronics and tech are integral parts of creating interactive architecture – through sensing and adapting we can create surfaces and structures that create a personal connection to the visitor/user.
I was successful in using XBees (wireless radio modules) to communicate wirelessly between two Arduinos. In the example below I demonstrate how closing a circuit on one Arduino turns on a LED on another Arduino. The electronics are very straightforward and the XBee devices communicate via serial, so you only need to send/receive/process serial messages to work with the data.
IMG_20141002_183725
When the switch circuit is open, the LED on the other Arduino is off.
IMG_20141002_183734
When the switch is thrown (circuit closed), a LED illuminates on the other Arduino.

My next step is to learn how to work with two-way communication, so that a sensor could send data to a base Arduino, and then receive information from that Arduino to affect a local component – it could be a motor, a shape-memory alloy, or something creating a similar means of actuation.

Interfacing Arduino with Grasshopper – Day 2

I’ve now been able to make the data from the flex sensor affect 3D objects in Rhino, which completes my tutorial in understanding how to interface the Arduino with Grasshopper. In the example shown, the aperture size of an array of pyramidal shapes changes depending on how the flex sensor is bent.

flexSensorToSurface_Day2_1
When the sensor is not bent, the apertures are wide open.
flexSensorToSurface_Day2_2
When the sensor is bent, the apertures close.

I still need to educate myself on data structures and sorting data in Grasshopper, as it seems that in my previous attempts I did not have matching data sets which prevented me from creating 3D shapes.

flexSensorToSurface_Day2_grasshopper
The Grasshopper sketch that produced the 3D shapes.

My next step will be justifying the use of this technology within the task of creating an architectural plan/intervention for the site in Odense.

Day trip to Odense

https://www.flickr.com/apps/slideshow/show.swf?v=1811922554

The studio group took a day trip to Odense to observe Thomas B. Thriges Street, which is the centre of a radical new plan to demolish the existing roads running through the centre of the city and replace it with a pedestrian-friendly area. The new development will be located near all of the landmarks I photographed, and I think there’s an interesting opportunity to create new architecture that embraces new technologies and ways of building but also harkens back to the traditional designs of churches and government buildings.