This file contains 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
REM Crea la estructura para un informe en latex en la que se puede compilar el archivo total o partes mas pequenias por separado. | |
REM Crea un archivo para caratula y uno para el preambulo, los cuales no pueden compilarse por separado. | |
REM El nombre del archivo principal se pasa como primer parametro. | |
REM Los nombres de la secciones del informe (sin contar la caratula) se pasan a partir del segundo parametro. | |
REM Crea un directorio principal con el nombre del primer parametro. Este contiene: | |
REM *Un archivo con el mismo nombre, que al compilarlo se compila el informe completo | |
REM *Una carpeta extra llamada "extra" que contiene la caratula y el preambulo | |
REM *Una carpeta por cada seccion pasada como parametro con el mismo nombre de la seccion. Estas carpetas a su vez contienen: |
This file contains 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
@echo off | |
REM Crea la estructura para un informe en latex en la que se puede compilar el archivo total o partes mas pequenias por separado. | |
REM Crea un archivo para caratula y uno para el preambulo, los cuales no pueden compilarse por separado. | |
REM El nombre del archivo principal se pasa como primer parametro. | |
REM Los nombres de la secciones del informe (sin contar la caratula) se pasan a partir del segundo parametro. | |
REM Crea un directorio principal con el nombre del primer parametro. Este contiene: | |
REM *Un archivo con el mismo nombre, que al compilarlo se compila el informe completo |
This file contains 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
#ignora extras de altium, latex y LTspice, carpetas comprimidas, pdfs y archivos de configuracion de windows. | |
## configuracion de windows ## | |
*.ini | |
This file contains 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
; | |
; asmtest.asm | |
; | |
; Created: 1/20/2019 5:31:12 PM | |
; Author : mlste | |
; | |
; Cuenta de 0 a 9 en un 7 segmentos | |
; a,b,c,d,e,f,g = PD2,PD3,PD4,PD5,PD6,PD7,PB0,PB1 | |
; = PIN2 to PIN9 (Arduino uno) |
This file contains 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
; Blink LED on PB4(Arduino Leonardo pin 8, Arduino Uno pin 12) | |
; http://forum.arduino.cc/index.php?topic=159572#msg1194604 | |
; https://forum.arduino.cc/index.php?topic=413151.msg2844634#msg2844634 | |
; https://gist.github.com/mhitza/8a4608f4dfdec20d3879 | |
#define __SFR_OFFSET 0 | |
This file contains 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
#sacado de alguna respuesta de stack overflow que ahora no encuentro | |
def change_endianness(s): | |
return "".join(reversed([s[i:i+2] for i in range(0, len(s), 2)])) | |
#Para correrlo desde consola de pycharm: | |
#import sys | |
#sys.path.append("path/hasta/carpeta/que/contiene/este/archivo) | |
#import endian | |
#endian.change_endianness("1234") |
This file contains 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
# cambiar todas las instancias que digan "ej8" por el nombre del proyecto | |
# agregar todos los .cpp en donde dice "add_executable()" | |
cmake_minimum_required(VERSION 3.14) | |
project(ej8) | |
set(CMAKE_CXX_STANDARD 14) | |
This file contains 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
\documentclass[12pt]{article} | |
\usepackage{graphicx} | |
\usepackage{hyperref} | |
\hypersetup{ | |
colorlinks=true, | |
linkcolor=blue, | |
filecolor=magenta, | |
urlcolor=cyan, | |
} |
This file contains 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
{ | |
"tx" : [ | |
{ | |
"txid": "id", | |
"nTxin": 1, | |
"vin": [ | |
{ | |
"blockid": "uijhnzfdmsk", | |
"txid": "nalsjfsken" | |
} |
This file contains 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 <NewPing.h> | |
#define TRIGGER_PIN 12 | |
#define ECHO_PIN 11 | |
#define MAX_DISTANCE 200 | |
#define PWM_PIN 9 | |
/* ELIMINACION DELTAS EN LA DERIVADA */ | |
//#define DERIVATIVE_MEASUREMENT //Si esta definido, no se considera el efecto de modificar el setPoint \ |
OlderNewer