This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | //C odigo por El Taller De TD | |
| // eltallerdetd.wordpress.com | |
| // youtube.com/ElTallerDeTD | |
| #include <Servo.h> | |
| int valor = 0; | |
| Servo serv; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <SoftwareSerial.h> //Incluimos la libreria Software Serial | |
| //Creado por youtube/ElTallerDeTD | |
| //eltallerdetd@gmail.com | |
| SoftwareSerial SIM800L(8,9); //Instanciamos el objeto SIM800L y le pasamos los parametros de los pines TX y RX | |
| String valor; //Declaramos la variable de tipo String valor. | |
| void setup() { | |
| pinMode(13, OUTPUT); //Declarar el pin 13 como salida. | |
| Serial.begin(9600); //Inicializamos la primera comunicacion Serial. | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <SoftwareSerial.h> | |
| //Proyecto creado por youtube.com/ElTallerDeTD | |
| SoftwareSerial SIM800L(8,9); | |
| String valor; //Declaramos la variable de tipo String valor. | |
| void setup() { | |
| pinMode(13, OUTPUT); //Declarar el pin 13 como salida. | |
| Serial.begin(9600); //Inicializamos la primera comunicacion Serial. | |
| SIM800L.begin(9600); //Inicializamos la segunda comunicacion Serial. | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.*; | |
| import java.text.DecimalFormat; | |
| /** | |
| * | |
| * @author youtube/eltallerdetd | |
| */ | |
| public class Main { | |
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* Arduino Radar Project | |
| * | |
| * Version Actualizada. Se ajusta a cualquier resolucion! | |
| * Tan solo cambia los valores en la funcion size() con los de tu pantalla. | |
| * | |
| * | |
| * Codigo hecho por Dejan Nedelkovski, | |
| * www.HowToMechatronics.com | |
| * | |
| * Traducido por El Taller De TD | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* | |
| Codigo originalmente creado por Dejan Nedelkovski de howtomechatronics.com | |
| Traducido y modificado por El Taller de TD de youtube/eltallerdetd | |
| */ | |
| // Importa la libreria Servo | |
| #include <Servo.h>. | |
| // Define los pines del sensor ultrasonico Trig y Echo | |
| const int trigPin = 10; | 
NewerOlder