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 youtube_dl | |
| #Pedimos la URL de input al usuario | |
| input_url = input("Ingrese la URL del video que desea convertir: ") | |
| #Obtenemos el titulo del video | |
| video_info = youtube_dl.YoutubeDL().extract_info(url=input_url, download=False) | |
| video_title = video_info['title'] | 
  
    
      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
    
  
  
    
  | from selenium import webdriver | |
| import time | |
| #Precio del Bitcoin con Web Scraping (Python y Selenium) | |
| PATH = "C:\Program Files (x86)\chromedriver.exe" | |
| driver = webdriver.Chrome(PATH) | |
| driver.get("https://es.investing.com/crypto/bitcoin") | 
  
    
      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
    
  
  
    
  | from PIL import Image | |
| from pytesseract import * | |
| pytesseract.tesseract_cmd = r'C:\Users\Usuario\AppData\Local\Programs\Tesseract-OCR\tesseract.exe' | |
| img = Image.open("image.png") | |
| resultado = pytesseract.image_to_string(img) | |
| print(resultado) | 
  
    
      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
    
  
  
    
  | /* | |
| * Contador de RPM con Arduino | |
| * by youtube.com/ElTallerDeTD | |
| */ | |
| #include <SevenSeg.h> //Incluimos la librería para nuestro display | |
| String numeros; //En esta variable se almacenan los numero a mostrar o letras. | |
| const int numOfDigits =4; //Definimos el numero de dígitos de nuestro display | 
  
    
      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
    
  
  
    
  | /* | |
| * Detector de Mentiras con Arduino | |
| * Por El Taller De TD | |
| * youtube.com/ElTallerDeTD | |
| */ | |
| void setup() | |
| { | |
| //Inicializamos la Comunicacion Serial. | |
| Serial.begin(9600); | 
  
    
      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 com.twilio.Twilio; | |
| import com.twilio.converter.Promoter; | |
| import com.twilio.rest.api.v2010.account.Message; | |
| import com.twilio.type.PhoneNumber; | |
| import java.net.URI; | |
| import java.math.BigDecimal; | |
| import java.text.DateFormat; | |
| import java.text.SimpleDateFormat; | |
| import java.util.Date; | 
  
    
      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
    
  
  
    
  | #define BLYNK_PRINT Serial | |
| #include <ESP8266WiFi.h> | |
| #include <BlynkSimpleEsp8266.h> | |
| // You should get Auth Token in the Blynk App. | |
| // Go to the Project Settings (nut icon). | |
| char auth[] = "Aqui va nuestro token"; | 
  
    
      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 <Arduino.h> //Solo si estas usando Platformio, no el IDE de Arduino. | |
| #include <ESP8266WiFi.h> | |
| #include <BlynkSimpleEsp8266.h> | |
| #define BLYNK_PRINT Serial | |
| // Coloque aqui su clave de autenticacion | |
| char auth[] = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; | 
  
    
      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 <CheapStepper.h> //Importamos la libreria CheapStepper | |
| CheapStepper stepper (8,9,10,11); //Instanciamos la libreria y asignamos los pines a utilizar | |
| char lector; //Creamos una variable de tipo char | |
| void setup() { | |
| Serial.begin(9600); //Iniciamos la 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
    
  
  
    
  | //Proyecto Creado por El Taller De TD | |
| //youtube.com/ElTallerDeTD | |
| char lector; //Declaramos la varibale lector | |
| void setup() { | |
| pinMode(13, OUTPUT); //Rele | |
| pinMode(12, OUTPUT); //Led Verde | |
| pinMode(11, OUTPUT); //Led Rojo | |
| Serial.begin(9600); //Inicia Comunicacion Serial | 
NewerOlder