Difference between revisions of "Zoönology"
Line 10: | Line 10: | ||
==== Soil moisture sensor ==== | ==== Soil moisture sensor ==== | ||
[[File:SoilMoistureSensor.jpeg|100px|thumb|SparkFun Soil Moisture Sensor]] | [[File:SoilMoistureSensor.jpeg|100px|thumb|SparkFun Soil Moisture Sensor]] | ||
+ | ===== Schematic ===== | ||
+ | [[File:SoilMoistureSensor-fritzing.jpeg|frameless]] | ||
+ | ===== Code ===== | ||
<pre> | <pre> | ||
int soilPin = 32; // the sensor signal pin is connected to pin 32 on the board | int soilPin = 32; // the sensor signal pin is connected to pin 32 on the board |
Revision as of 09:56, 31 January 2023
Zoöp
"Zoöp" is an experimental model for organizations to transition towards ecological justice - by not only preaching, but radically practicing it. In a Zoöp, non-humans have an equal voice next to humans, on all levels of the organization and its decision-making. As the initiators describe it: “Zoöp is short for Zoöperation: coöperation with zoë – (Greek for ‘life’) Together with other Zoöps we work towards the transformation of our economy into a regenerative human-inclusive ecosystem, a network of exchange of matter, energy and meaning that supports all bodies in their existence”. [Zoöp manifesto]
Zoönology: Observing & Sensing
The name of this workshop, "Zoönology", is the combination of technology and zoë. It may seem paradoxical to combine computation and the model of Zoöp as computation depends on the extraction of finite resources. Therefore, as we make the connection during the workshop by making, the question arises to whether computing and network technologies could have a place in regenerative, human-inclusive, reciprocal ecosystems [zoop.earth]. In the workshop we will use a low powered ESP32 micro controller and a environmental sensor to observe non-human or non-living entities.
Environmental sensors
Soil moisture sensor
Schematic
Code
int soilPin = 32; // the sensor signal pin is connected to pin 32 on the board int soilValue = 0; // we set the initial value of the soil sensor to 0 void setup() { Serial.begin(9600); // make a connection to the computer } void loop() { soilValue = analogRead(soilPin); // read value from the soil pin (32) Serial.println(soilValue); // send value to the computer delay(1000); // wait 1 second (1000 milliseconds) }
UV/IR/Visible Light sensor
Air Quality Sensor
Temperature/Humidity Sensor
Pressure/Temperature/Altitude sensor
Code
All the starter templates and final code can be found on our Github page.
Planning:
Week 1: (7th of February)
* Introduction in the ESP32 micro controller & sensors * Picking your environmental sensor for coming weeks * Research your sensor
Week 2: (14th of February)
* Connecting your sensor to the Lolin D32 Pro * Saving sensor data to the SD card
Week 3: (21st of February)
* Displaying sensor values on a local captive portal
Week 5: (7th of March)
* Field testing
Week 6: (14th of March)
* Extracting sensor values from the field test * Documenting findings on the captive portal
Week 7: (21th of March)
No class
Week 8: (28th of March)
* Finishing up the captive portal
Tutorials
To be added ...