NM-98-CI-PU KASVI
NM-98-CI-PU KASVI
Categoría: Medio Superior (Preparatoria)
Área de participación: Ciencias de la ingeniería
Resumen
Este proyecto lo queremos realizar ya que hoy en día muchas personas no saben lo que están consumiendo, piensan que al ser frutas o verduras es algo sano pero no, ya que tienen procesadores o químicos que son malos para la salud. En la casa se puede cultivar el mismo producto muchas veces, siendo la cosecha 100% natural, ya que no se utiliza fertilizantes y a la vez que la cosechar se pueda regar con una automatización y por eso creamos un huerto casero que proporciona frutas y verduras higiénicamente para fomentar una buena alimentación desarrollando tus productos que consumes y así podremos que una persona se alimente sanamente si tiene un huerto personal que se haga cargo del crecimiento de frutas y verduras.
Este proyecto lo queremos hacer para conozca más alternativas para tener una buena alimentación y que las personas tomen en cuenta los alimentos que nos comemos. Al final se pudo lograr hacer el huerto y el muro en nuestros hogares.
Mientras tanto también queremos concientizar a los menores de las casas para que ellos sepan cómo crear una buena comida en sus casas con la ayuda de nuestro proyecto.
Pregunta de Investigación
¿Es posible que se pueda desarrollar un huerto y un muro en una casa con ayuda de la tecnología?Planteamiento del Problema
El ajetreo de las actividades en la vida cotidiana en el área metropolitana de una persona, lo ha llevado a perder costumbres que en antaño formaban el estilo de vida en un ciudadano, como el tener un jardín con flores o simple y sencillamente tener macetas con plantas ya que no se tiene el tiempo necesario para regarlas y darles el cuidado necesario.
Es imposible pensar que dentro de una casa citadina se pueda tener un huerto el cual provea de frutas y verduras limpias y sanas a un ciudadano para tener una buena alimentación; por lo tanto, un huerto y muro con riego inteligente
Antecedentes
En poco más de cinco décadas la situación del campo mexicano ha ido de mal a peor. No es casual que por ello en las áreas rurales haya crecido el abandono del campo y del campesino por arar sus tierras, cambiándolas por ser obreros en otros países.
Los alimentos transgénicos son aquellos que fueron producidos a partir de un organismo modificado genéticamente mediante ingeniería genética y son utilizados más a menudo y esto no ayuda mucho a nuestro cuerpo.
Hoy en día muchas personas no saben las cosas que compran, de donde vienen o simplemente la calidad de estos, solo los compramos en la tienda sin saber si están procesados o tiene algún químico dañino para nuestra salud y son más importantes los aspectos naturales ya que al consumir algo así, no sabemos si al transportarlos contaminaron o al extraerlos de la tierra igualmente se contaminan.
Por otra parte, los campos utilizan mucha agua contaminada y que no tiene el cuidando para la cómoda y utilizan aguas negras y la mayoría de los consumidores tampoco se informan de lo que están comprando.
La mayor parte de nuestro planeta se está sobre explotando y cada vez hay menos tierra para los cultivos las personas no tendrán que consumir y esto hace que cada vez que tengamos menos salud.
Una parte fundamental en nuestras vidas en la salud y queremos que las personas sepan que están consumiendo y esto se logrará, creando su propio huerto urbano que ayude a que el agua no se desperdicie y se recicle mediante un proceso que ayudará a este.
Objetivo
Crear un huerto y un muro de frutas y verduras en hogares metropolitanos utilizando un sistema de riego automatizado
Justificación
Una alimentación y nutrición adecuada son la base para la supervivencia, la salud y el crecimiento del ser humano. La desnutrición a largo plazo tiene efectos negativos sobre el desarrollo cognoscitivo y motor, la inmunidad y tal vez la incidencia de enfermedades crónicas degenerativas. En el ámbito internacional se ha estimado que 178 millones de niños menores de cinco años en el mundo sufren de desnutrición crónica (baja talla para la edad), la cual es responsable del 35% (3.5 millones) de muertes en este grupo de edad. En México, 1.5 millones de niños la padecen y es más prevalente en la región sur (19.2%) así como en las zonas con población indígena.
Muchas personas piensan que la mala alimentación en los estudiantes se debe a la crisis económica que atraviesa el país, además que los precios de ciertos productos han incrementado de manera considerable. Dicha situación es completamente errónea, aunque ya que dentro de las cooperativas de las escuelas se ofrecen diversos paquetes de comida por un bajo precio.
Hipótesis
Un sistema de riego que detecta la humedad de la tierra y es capaz de decidir el momento adecuado de regar el huerto y así puede producir a largo plazo la obtención de frutas y verduras
Método (materiales y procedimiento)
Materiales para arduino
- Microcrontrolador arduino uno
- Placas de pruebas
- Sensor de humedad
- Sensor de lluvia
- Fotoresistencia LDR
- Fotoresistencia
- Interface LCD
- Cables macho a macho y macho a hembra
- Protoboards
- Alambres
- Llaves
- Motor corriente directa
- Eliminador
- Modulo bluetooth
- Potenciómetros
- Regulador
Materiales para muro verde
- Semillas
- Tierra
- Mangera
- Agua
- Bomba de agua sumergible
- Tabla de madera
Materiales para huerto
- Pecera (tamaño que sea necesario)
- Semillas
- Tierra
- Mangera
- Agua
- Bomba de agua sumergible
Procedimiento del arduino
- Crear programación dependiendo de las necesidades de las personas.
Huerto
int luzValue = 0;
int lluvValue = 0; int humeValue = 0; int lluvia; int luz; int humedad; int regarPin = 2; int sensorHumedad = A5; int sensorLuz = A4; int sensorLluvia = A3; void setup() { pinMode(regarPin, OUTPUT); Serial.begin(9600); } void loop() { luzValue = analogRead(sensorLuz); lluvValue = analogRead(sensorLluvia); humeValue = analogRead(sensorHumedad); delay(1500); // —————————————————- // Imprimir valores // —————————————————- lluvia = (100 * lluvValue * 100.0) / 1024; Serial.print(“Lluvia:”); Serial.print(lluvia); Serial.println(” C”); luz = (100.0 * luzValue) / 1024; Serial.print(“Luz:”); Serial.print(luz); Serial.println(“%”); humedad = (100.0 * humeValue) / 1024; Serial.print(“Humedad:”); Serial.println(humedad); Serial.println(“=======================================================================”); // —————————————————- // Chequeo si debo regar // —————————————————- if (lluvia == HIGH) { Serial.println(“NO Detectada lluvia”);
if( humedad <= 50 && luz < 70 ) { digitalWrite(regarPin, HIGH); Serial.println(“Debe regar”); } } else{ digitalWrite(regarPin, LOW); |
Muro verde
int led=13;
void setup()
{
pinMode(13,OUTPUT);//
digitalWrite(led,HIGH);
Serial.begin(9600);//
}
void loop()
{
while (Serial.available())
{
char dato=Serial.read();
if(dato==’a’){
Serial.write(dato);
dato=0;
digitalWrite(led, LOW);
}
if (dato==’b’){
Serial.write(dato);
dato=0;
digitalWrite(led,HIGH);
}
}
}
Procedimiento del huerto
- Elabora tu huerto, en nuestro caso en algunos moldes pusimos la tierra y las semillas y las plantas crecieron en una semana aproximadamente y las regábamos diariamente.
- Programar un sistema que esté controlado por un Arduino Uno y que se encargue de obtener datos del ambiente, procesarlos y una vez que se cumplen una serie de condiciones activa un mecanismo de distribución de agua.
- Cuando los indicadores de parámetros tomados del área a regar, indiquen que se debe proceder al riego, la bomba inicia su acción enviando agua al circuito de distribución.
- El sensor de humedad se coloca enterrado en el suelo; si el nivel de humedad es aceptable, es decir, de un rango mayor o igual a un 70 por ciento, el proceso continúa detenido. En cambio, si el sensor de humedad detecta un rango menor a un 70 por ciento, se alerta al Arduino que envía la señal a un relevador que a su vez activa la electroválvula, dejando así pasar el flujo de agua.
- Activar el arduino para que riegue dependiendo del dato que el arduino mando.
Procedimiento del muro verde
- Crear tu muro con una tabla de madera
- Programe un sistema que esté controlado por un Arduino Uno y que sea responsable de obtener datos del entorno, procesarlos y, una vez que se cumplan una serie de condiciones, se activa un mecanismo de distribución de agua.
- El sensor de humedad se coloca en el suelo en el suelo; Si el nivel de humedad es aceptable, es decir, en un rango mayor o igual al 70 por ciento, el proceso continúa. Por otro lado, si el sensor de humedad detecta un rango de menos del 70 por ciento, el Arduino que envía la señal a un relé que a su vez activa la válvula solenoide se alerta, permitiendo así que pase el flujo de agua.
- Active el arduino al agua dependiendo de los datos que envió el arduino.
Resultados
Desarrollamos el huerto y el muro verde programando el arduino.
Caso 1 | Caso 2 | Regar o no regar |
Húmedo | Luz | No regar |
Húmedo | Lluvia | No regar |
Lluvia | Luz | No Regar |
Lluvia | Lluvia | No Regar |
Húmedo | Húmedo | No Regar |
Luz | Luz | Regar |
Discusión
La evolución de la tecnología permite tener influencia en los diferentes ámbitos científicos como por ejemplo la botánica, es un hecho que la vida en el área metropolitana es muy rápida lo cual no permite en ocaciones poder adquirir una mascota o quizá el cultivo de plantas; es en ese momento en donde entra la tecnología ya que ella se encargará de proveer de agua en un huerto para que en corto tiempo ofrezca frutas y verduras limpias y sanas.
Conclusiones
Nuestro proyecto esta funcionando y produciendo frutos durante aproximadamente 6 meses sin la supervición de las personas, el huerto esta funcionando correctamente en la parte tecnologica.
Bibliografía
-Cuidados. (2018). Recuperado de http://www.plantasdeaire.es/cuidado
Accedió 19 noviembre 2018
-¿Qué es Arduino? ~ Arduino.cl – Plataforma Open Source para el desarrollo de prototipos electrónicos. (2004). Recuperado de https://www.google.com.mx/amp/s/arduino.cl/que-es-arduino/amp/ Accedió 05 diciembre 2018
-El peligro de los alimentos modificados genéticamente. (2016). Recuperado de https://www. Google.com.mx/amp/s/m.prime-rahora.com/ampa/estilo-de-vida7salud/nota/el-peligro-de-los-alimentos-modificadosgeneticamente-1223711
Accedió 08 enero 2019
-Alimentos transgénicos: ¿Qué son y qué daños a la salud provocan? – MisionesOnline. (2017). Recuperado de
https://misionesonline.net/2017/06/26/alimentos-transgenicos-danos-la-salud-provocan Accedió el 22 noviembre 2018
-10 plantas que cosecharás rápidamente. Recuperado de https://www.google.com.mx/amp/s/www.bioguia.com/amp/ambiente/10-plantas-que-cosecharas-rapidamente_29276393.html Accedió el 19 diciembre 2018.
-Situación y contexto de la problemática del agua en México. (2014 ñ) Recuperado de http://www.aguas.org.mx/sitio/index.php/panorama-del-agua/diagnosticos-del-agua Accedió el 16 septiembre 2018
-Tipos de riego. (2012). Recuperado dehttps://www.clubensayos.com/Ciencia/Riego-Por-Gravedad/445153.html Accedió el 19 de ocubre 2018
–Cuántas calorías comer según tu edad. (2019). Retrieved 22 September 2019, fromhttps://www.eluniversal.com.mx/menu/cuantas-calorias-comer-segun-tu-edad
NM-98-CI-PU KASVI
NM-98-CI-PU KASVI
Summary
We wanted to do this project because many people today do not know what they are
consuming, they think that for being fruits or vegetables it is healthy but it might not,
since they often have preservers or chemicals that are bad for your health. At home, you
can grow the same product many times, being the harvest 100% natural, since no
fertilizer is used and at the same time, the harvest can be irrigated with an automation
system. That is why we want to create a home garden that provides fruits and
vegetables hygienically, to encourage a good diet and develop the products that you
consume. That way, a person can eat healthy by owning a personal garden and by
taking care of the fruits and vegetables they grow in it.
We want to do this project to know more alternatives to have a good diet and that people
take into account the food we eat. In the end it was possible to make the garden and the
wall in our homes.
Meanwhile, we also want to raise awareness among the children of the houses so that
they know how to create a good meal in their homes with the help of the proyect.
Research Question
Is it possible that a orchad and a green wall can be developed in a house with the help of technology?Problem approach
The hustle and bustle of everyday activities in the metropolitan area of a person, has led to the loss of customs that in the past formed the lifestyle of a citizen, such as having a garden with flowers or simply having pots with plants since you do not have the necessary time to water them and give them care. It is impossible to think that within a town house you can have a garden which provides clean and healthy fruits and vegetables for a citizen who wants to have a healthy diet, like an orchard and a wall with intelligent irrigation.
Background
Procedure of the “Arduino”
- Create programming depending on people’s needs.
Orchard
int luzValue = 0;
int lluvValue = 0;
int humeValue = 0;
int lluvia;
int luz;
int humedad;
int regarPin = 2;
int sensorHumedad = A5;
int sensorLuz = A4;
int sensorLluvia = A3;
void setup() {
pinMode(regarPin, OUTPUT);
Serial.begin(9600);
}
void loop() {
luzValue = analogRead(sensorLuz);
lluvValue = analogRead(sensorLluvia);
humeValue = analogRead(sensorHumedad);
delay(1500);
// —————————————————-
// Imprimir valores
// —————————————————-
lluvia = (100 * lluvValue * 100.0) / 1024;
Serial.print(“Lluvia:”);
Serial.print(lluvia);
Serial.println(” C”);
luz = (100.0 * luzValue) / 1024;
Serial.print(“Luz:”);
Serial.print(luz);
Serial.println(“%”);
humedad = (100.0 * humeValue) / 1024;
Serial.print(“Humedad:”);
Serial.println(humedad);
Serial.println(“=======================================================================”);
// —————————————————-
// Chequeo si debo regar
// —————————————————-
if (lluvia == HIGH) {
Serial.println(“NO Detectada lluvia”);
if( humedad <= 50 && luz < 70 ) {
digitalWrite(regarPin, HIGH);
Serial.println(“Debe regar”);
}
int luzValue = 0;
int lluvValue = 0; int humeValue = 0; int lluvia; int luz; int humedad; int regarPin = 2; int sensorHumedad = A5; int sensorLuz = A4; int sensorLluvia = A3; void setup() { pinMode(regarPin, OUTPUT); Serial.begin(9600); } void loop() { luzValue = analogRead(sensorLuz); lluvValue = analogRead(sensorLluvia); humeValue = analogRead(sensorHumedad); delay(1500); // —————————————————- // Imprimir valores // —————————————————- lluvia = (100 * lluvValue * 100.0) / 1024; Serial.print(“Lluvia:”); Serial.print(lluvia); Serial.println(” C”); luz = (100.0 * luzValue) / 1024; Serial.print(“Luz:”); Serial.print(luz); Serial.println(“%”); humedad = (100.0 * humeValue) / 1024; Serial.print(“Humedad:”); Serial.println(humedad); Serial.println(“=======================================================================”); // —————————————————- // Chequeo si debo regar // —————————————————- if (lluvia == HIGH) { Serial.println(“NO Detectada lluvia”);
if( humedad <= 50 && luz < 70 ) { digitalWrite(regarPin, HIGH); Serial.println(“Debe regar”); } } else{ digitalWrite(regarPin, LOW); |
Green wall
int led=13;
void setup()
{
pinMode(13,OUTPUT);//
digitalWrite(led,HIGH);
Serial.begin(9600);//
}
void loop()
{
while (Serial.available())
{
char dato=Serial.read();
if(dato==’a’){
Serial.write(dato);
dato=0;
digitalWrite(led, LOW);
}
if (dato==’b’){
Serial.write(dato);
dato=0;
digitalWrite(led,HIGH);
}
}
}
Procedure of the orchad
- Make your garden, in our case in some molds we put the soil and the seeds and plants grew in about a week and we watered them daily.
- Program a system that is controlled by an Arduino Uno and that is responsible for obtaining data from the environment, processing them and once a series of conditions is fulfilled activates a water distribution mechanism.
- When the parameters of parameters taken from the area to be irrigated, indicate that irrigation should proceed, the pump starts its action by sending water to the distribution circuit.
- The humidity sensor is placed in-ground on the ground; If the humidity level is acceptable, that is to say, in a range greater than or equal to 70 percent, the process continues. On the other hand, if the humidity sensor detects a range of less than 70 percent, the Arduino that sends the signal to a relay that in turn activates the solenoid valve is alerted, thus allowing the water flow to pass.
- Activate the arduino to water depending on the data that the arduino sent.
Procedure of the green wall
- Create your wall with a wooden board in our case we put an a type of cloth to hold the plants.
- Program a system that is controlled by an Arduino Uno and is responsible for obtaining lathe data, processing it and, once a series of conditions are met, activating a water distribution mechanism.
- The humidity sensor is placed on the floor on the floor; If the humidity level is acceptable, that is, in a range greater than or equal to 70 or 80 percent, the process continues. On the other hand, if the humidity sensor detects a range of less than 70 or 80 percent, Ar-duino that sends the signal to a relay that in turn activates the solenoid valve is alerted, so water flow can pass.
- I activate the arduino to the specified water of the data that the arduino sent.
Objective
Create a fruit and vegetable orchard and
wall in metropolitan households using an
automatic irrigation system.
Justification
Adequate food and nutrition are the
basis for the survival, health and growth
of the human being. Long-term
malnutrition has negative effects on
cognitive and motor development,
immunity and perhaps the incidence of
chronic degenerative diseases. In the
international field it has been estimated
that 178 million children under the age of
five suffer from chronic malnutrition
(short stature for age), which is
responsible for 35% (3.5 million) of
deaths In this age group. In Mexico, 1.5
million children suffer from it and it is
more prevalent in the southern region
(19.2%) as well as in areas with
indigenous populations.
Many people think that poor nutrition in
students is due to the economic crisis
that is going through the country, in
addition to the fact that the prices of
certain products have increased
considerably. This situation is
completely wrong, although as part of
the school cooperatives, various food
packages are offered for a low price.
Hypothesis
An irrigation system that detects the
humidity of the soil and is able to decide
the right time to water an orchard, can
produce long-term fruit and vegetable
production.
Method (materials and procedure)
Materials for the "arduino"
Arduino one microcontroller
Test plates
Humidity sensor
Rain sensor
LDR resistance
Sunfounder
LCD interface
Male to male and male to female
cables
Protoboards
Wires
keys
Direct current motor
Eliminator
Bluetooth module
Potentiometers
Regulator
Materials for the green wall
Seeds
Earth
Hose
Water
Submergible water pump
Wood plank
Garden materials
Fish tank (size that is necessary)
Seeds
Earth
Hose
Water
Submergible water pump
Procedure of the “Arduino”
1. Create programming depending on
people’s needs.
Orchard
int luzValue = 0;
int lluvValue = 0;
int humeValue = 0;
int lluvia;
int luz;
int humedad;
int regarPin = 2;
int sensorHumedad = A5;
int sensorLuz = A4;
int sensorLluvia = A3;
void setup() {
pinMode(regarPin, OUTPUT);
8
Serial.begin(9600);
}
void loop() {
luzValue = analogRead(sensorLuz);
lluvValue = analogRead(sensorLluvia);
humeValue = analogRead(sensorHumedad);
delay(1500);
// —————————————————-
// Imprimir valores
// —————————————————-
lluvia = (100 * lluvValue * 100.0) / 1024;
Serial.print("Lluvia:");
Serial.print(lluvia);
Serial.println(" C");
luz = (100.0 * luzValue) / 1024;
Serial.print("Luz:");
Serial.print(luz);
Serial.println("%");
humedad = (100.0 * humeValue) / 1024;
Serial.print("Humedad:");
Serial.println(humedad);
Serial.println("===================================================
====================");
// —————————————————-
// Chequeo si debo regar
// —————————————————-
if (lluvia == HIGH) {
Serial.println("NO Detectada lluvia");
if( humedad <= 50 && luz < 70 ) {
digitalWrite(regarPin, HIGH);
Serial.println("Debe regar");
}
int luzValue = 0;
int lluvValue = 0;
int humeValue = 0;
int lluvia;
int luz;
int humedad;
int regarPin = 2;
int sensorHumedad = A5;
int sensorLuz = A4;
int sensorLluvia = A3;
void setup() {
pinMode(regarPin, OUTPUT);
Serial.begin(9600);
}
void loop() {
luzValue = analogRead(sensorLuz);
lluvValue = analogRead(sensorLluvia);
humeValue = analogRead(sensorHumedad);
delay(1500);
// —————————————————-
// Imprimir valores
// —————————————————-
lluvia = (100 * lluvValue * 100.0) / 1024;
Serial.print("Lluvia:");
Serial.print(lluvia);
Serial.println(" C");
luz = (100.0 * luzValue) / 1024;
Serial.print("Luz:");
Serial.print(luz);
Serial.println("%");
humedad = (100.0 * humeValue) / 1024;
Serial.print("Humedad:");
Serial.println(humedad);
Serial.println("===============================================
========================");
// —————————————————-
// Chequeo si debo regar
// —————————————————-
if (lluvia == HIGH) {
Serial.println("NO Detectada lluvia");
if( humedad <= 50 && luz < 70 ) {
digitalWrite(regarPin, HIGH);
Serial.println("Debe regar");
}
}
else{
digitalWrite(regarPin, LOW);
Green wall
int led=13;
void setup()
{
pinMode(13,OUTPUT);//
digitalWrite(led,HIGH);
Serial.begin(9600);//
}
void loop()
{
while (Serial.available())
{
char dato=Serial.read();
if(dato==’a’){
Serial.write(dato);
dato=0;
digitalWrite(led, LOW);
}
if (dato==’b’){
Serial.write(dato);
dato=0;
digitalWrite(led,HIGH);
}
}
}
Procedure of the orchad
1. Make your garden, in our case in
some molds we put the soil and the
seeds and plants grew in about a week
and we watered them daily.
2. Program a system that is controlled
by an Arduino Uno and that is
responsible for obtaining data from the
environment, processing them and once
a series of conditions is fulfilled activates
a water distribution mechanism.
3. When the parameters of parameters
taken from the area to be irrigated,
indicate that irrigation should proceed,
the pump starts its action by sending
water to the distribution circuit.
4. The humidity sensor is placed in-
ground on the ground; If the humidity
level is acceptable, that is to say, in a
range greater than or equal to 70
percent, the process continues. On the
other hand, if the humidity sensor
detects a range of less than 70 percent,
the Arduino that sends the signal to a
relay that in turn activates the solenoid
valve is alerted, thus allowing the water
flow to pass.
5. Activate the arduino to water
depending on the data that the arduino
sent.
7.6 Procedure of the green wall
1. Create your wall with a wooden board
in our case we put an a type of cloth to
hold the plants.
2. Program a system that is controlled
by an Arduino Uno and is responsible for
obtaining lathe data, processing it and,
once a series of conditions are met, activating a water distribution
mechanism.
3. The humidity sensor is placed on the
floor on the floor; If the humidity level is
acceptable, that is, in a range greater
than or equal to 70 or 80 percent, the
process continues. On the other hand, if
the humidity sensor detects a range of
less than 70 or 80 percent, Ar-duino that
sends the signal to a relay that in turn
activates the solenoid valve is alerted,
so water flow can pass.
4. I activate the arduino to the specified
water of the data that the arduino sent.
Results
We develop the garden and the green Wall programming the arduino.
Case 1 | Case 2 | Water or not water |
Humid | light | Not water |
Humid | Rain | Not water |
Rain | light | Not water |
Rain | Rain | Not water |
Humid | Humid | Not water |
light | light | Water |
Discussion
The evolution of technology allows to have influence in the different scientific fields such as botany, it is a fact that life in the metropolitan area is very fast which does not allow in occasions to be able to acquire a pet or perhaps the cultivation of plants; It is at that moment where the technology comes in as she will be in charge of providing water in an orchard so that in a short time it offers clean and healthy fruits and vegetables.
Conclusions
Our project is working and producing fruits for approximately 6 months without the supervision of people, the garden is working properly in the technological part.
Bibliography
-Cuidados. (2018). Recuperado de
http://www.plantasdeaire.es/cuidado
Accedió 19 noviembre 2018.
-¿Qué es Arduino? ~ Arduino.cl –
Plataforma Open Source para el
desarrollo de prototipos electrónicos.
(2004). Recuperado de
https://www.google.com.mx/amp/s/ardui
no.cl/que-es-arduino/amp/ Accedió 05
diciembre 2018.
-El peligro de los alimentos modificados
genéticamente. (2016). Recuperado de
https://www.google.com.mx/amp/s/m.pri
merahora.com/amp/estilos-de-
vida/salud/nota/elpeligrodelosalimentos
modificadosgeneticamente-1223711
Accedió 08 enero 2019.
-Alimentos transgénicos: ¿Qué son y
qué daños a la salud provocan? –
MisionesOnline. (2017). Recuperado de
https://misionesonline.net/2017/06/26/ali
mentos-transgenicos-danos-la-salud-
provocan Accedió el 22 noviembre
2018.
-10 plantas que cosecharás
rápidamente. Recuperado de
https://www.google.com.mx/amp/s/www.
bioguia.com/amp/ambiente/10-plantas-
que-cosecharas-
rapidamente_29276393.html Accedió el
19 diciembre 2018.
10
-Situación y contexto de la problemática
del agua en México. (2014 ñ)
Recuperado de
http://www.aguas.org.mx/sitio/index.php/
panorama-del-agua/diagnosticos-del-
agua Accedió el 16 septiembre 2018
-Tipos de riego. (2012). Recuperado
dehttps://www.clubensayos.com/Ciencia
/Riego-Por-Gravedad/445153.html
Accedió el 19 de ocubre 2018
-Cuántas calorías comer según tu edad.
(2019). Retrieved 22 September 2019,
fromhttps://www.eluniversal.com.mx/me
nu/cuantas-calorias-comer-segun-tu-
edad
-Cuántas calorías comer según tu edad.
(2019). Retrieved 22 September 2019,
fromhttps://www.eluniversal.com.mx/me
nu/cuantas-calorias-comer-segun-tu-
edad
