Skip to content

Latest commit

 

History

History

03_switch-magnetico

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Switch magnético

Diagrama

Switch magnético

Código

Ver componente Switch

let reed = five.Switch(8);

reed.on('close', () => {
  console.log('Switch cerrado');
});

reed.on('open', () => {
  console.log('Switch abierto');
});

console.log(`Estado inicial: ${reed.isClosed ? 'cerrado' : 'abierto'}`);

Ejecutar

$ node reed.js