mirror of
https://github.com/thooge/esp32-nmea2000-obp60.git
synced 2025-12-13 05:53:06 +01:00
first version for user js tasks
This commit is contained in:
12
lib/exampletask/index.js
Normal file
12
lib/exampletask/index.js
Normal file
@@ -0,0 +1,12 @@
|
||||
(function(){
|
||||
let isActive=false;
|
||||
window.esp32nmea2k.registerListener((id,data)=>{
|
||||
if (id === 0){
|
||||
//data is capabilities
|
||||
if (data.testboard) isActive=true;
|
||||
}
|
||||
if (isActive){
|
||||
console.log("exampletask listener",id,data);
|
||||
}
|
||||
})
|
||||
})();
|
||||
Reference in New Issue
Block a user