Reparando tu compu!

Contáctanos

Telefónos: 4421193047-4423239841 Mailito: Mafic e-mail Guillo e-mail

domingo, 26 de abril de 2020

ECG en Arduino

Ref. de youtube:

/*
//What is an analogical read: http://www.arduino.cc/en/Tutorial/AnalogReadSerial
*/References from youtube, ECG with Arduino:
//https://www.youtube.com/watch?reload=9&v=9Si4efa434U
//https://www.youtube.com/watch?v=xySBTU_9vGo

int L0Mas =11;
int L0Menos = 10;
int Senal =A0;

// the setup routine runs once when you press reset:
void setup() {

  // initialize serial communication at 9600 bits per second:
  Serial.begin(9600);
pinMode(L0Mas, INPUT);
pinMode(L0Menos,INPUT);

}

// the loop routine runs over and over again forever:
void loop() {
  if ((digitalRead(L0Mas)==1) || (digitalRead(L0Menos)==1)){
  Serial.println('!');
  }
  else{
    Serial.println(analogRead(A0));
  // read the input on analog pin 0:
  //int sensorValue = analogRead(A0);
  // print out the value you read:
   // int sensorValue1 = digitalRead(11);
    // int sensorValue2 = digitalRead(12);
  //Serial.println(sensorValue+sensorValue1+sensorValue2);
//  delay(1);        // delay in between reads for stability
//https://www.youtube.com/watch?reload=9&v=9Si4efa434U
//Serial.println(1024/2);
  }
  delay(1);
  }

///

viernes, 24 de abril de 2020

Encriptación de disco

Con Bitlocker para windows o luks https://launchpad.net/ecryptfs


Ref: https://www.cyberciti.biz/hardware/howto-linux-hard-disk-encryption-with-luks-cryptsetup-command/

jueves, 16 de abril de 2020

martes, 14 de abril de 2020

programa en Visual Basic

https://www.lawebdelprogramador.com/foros/Visual-Basic/1737786-como-puedo-hacer-que-un-picture-box-me-muestre-una-senal-analogica.html