Files
picar/Web/js/ballotvoter.js
2019-01-27 23:44:35 +10:30

21 lines
389 B
JavaScript

class MqttMessenger{
};
class BallotVoter{
constructor(onVote, messenger) {
this.cfg = ""; //load the configuration file.
this.messenger = messenger;
};
onConnect(){
console.log("Connected");
// Send a connected message to the swarm.
};
onMessage(message){
print("Message Received");
// Unpack the message.
};
};