• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

MMM-OralB / Bluetooth equipped toothbrush integration

Scheduled Pinned Locked Moved Development
68 Posts 13 Posters 24.0k Views 20 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    SvenSommer
    last edited by Jan 31, 2017, 7:24 PM

    Hey, this topic should continue the development of the MMM-OralB module, to integrate the OralB - Bluetooth equipped toothbrushes.
    It already started here as a request and changed to a develop specific topic.

    Looking for some building inspiration?
    Check out my large, thin and metal framed mirror on robstechlog.com.

    Modules released:
    MMM-GoogleAnalytics
    MMM-GrafanaChart
    MMM-GrafanaGauges

    1 Reply Last reply Reply Quote 0
    • D Offline
      dfuerst
      last edited by dfuerst Jan 31, 2017, 8:46 PM Jan 31, 2017, 8:43 PM

      hmmm, for my understanding.

      brushtimer.js is waiting till a connect and upon the reconnect after 3sec (of Oral 6500) not accepting further connect’s?
      would it help to integrate a , let’s say, 5 sec not looking for reconnect’s function. or is it noble that doesn’t allow this.

      At HCITOOL, yes you are so right Sir, this won’t recognize a brushing interruption.
      i don’t think that i am able to write anything like your brushtimer myself. i don’t even understand the code you have written.
      i have already tried to modify NetworkScanner and got the MACaddress parsed, but i didn#t manage to do anything with this payload. Just because i don’t understand the basics.

      my modified node_helper looked like this:

      /* global require, module /
      /
      Magic Mirror

      • Node Helper: MMM-NetworkScannermod
      • By Ian Perrin http://ianperrin.com modified by dfuerst
      • MIT Licensed.
        */

      var NodeHelper = require(“node_helper”);
      var sudo = require(“sudo”);

      module.exports = NodeHelper.create({
      start: function function_name () {
      console.log("Starting module: " + this.name);
      },

      // Override socketNotificationReceived method.
      socketNotificationReceived: function(notification, payload) {
          console.log(this.name + ' received ' + notification);
      
          if (notification === "SCAN_NETWORK") {
              this.config = payload;
              this.scanNetwork();
              return true;
          }
      },
      
      scanNetwork: function() {
          console.log(this.name + " is scanning for mac addresses");
      
          var self = this;
          var hci = sudo(['hcitool', 'con']);
          var buffer = '';
          var errstream = '';
      
          hci.stdout.on('data', function (data) {
              buffer += data;
          });
      
          hci.stderr.on('data', function (data) {
              errstream += data;
          });
      
          hci.on('error', function (err) {
              errstream += err;
          });
      
          hci.on('close', function (code) {
              if (code !== 0) {
                  console.log(self.name + " received an error running hcitool: " + code + " - " + errstream);
                  return;
              }
              //Parse the response
              var rows = buffer.split('\n');
              var macAddresses = [];
      
              // HCI-TOOL SCAN table
              for (var i = 1; i < rows.length; i++) {
                  var cells = rows[i].split(' ').filter(String);
                  if (cells[2] && macAddresses.indexOf(cells[2].toUpperCase()) === -1) {
                      macAddresses.push(cells[2].toUpperCase());
                  }
              }
      
              self.sendSocketNotification('MAC_ADDRESSES', macAddresses);
          console.log(macAddresses);
          });
      
      }
      

      });

      that gave me in the console.log:

      [ ‘E0:E5:CF:FC:4D:8C’ ]

      how can i integrate this node_helper macaddr.SCAN into your module?

      S 1 Reply Last reply Jan 31, 2017, 9:11 PM Reply Quote 0
      • S Offline
        SvenSommer @dfuerst
        last edited by Jan 31, 2017, 9:11 PM

        @dfuerst
        By now brushtimer.js has already the whole logic the of the final modul implemented. It’s working like this.

        1. If a brush is connected it’s starts the timer. This happens when the “start/stop” button is pushed for the first time. After 3 seconds (mine and your) toothbrush turns off bluetooth connection. This is registred, but nothing happens (timer is still running) until:
        2. Brush is connected again. This means the “start/stop” button was hit again and this time is means to stop the timer, because the brush was already running and is now stopped. (If I understood your test output right, this point never happens when you tested it; your toothbrush isn’t connecting again, when you stopped it)
        3. Because (my) toothbrush doesn’t shut down the connection for 32 seconds after the stop, I have to wait until I can detect a new connection event.

        What you need to set up in your attempt is a timer. When you detect your mac-address you start your timer. And when its gone, stop it.

        Here is a clock object you can integrate and use. You can use Clock.resume() to start/resume the timer or Clock.pause() to wait. If you want to reset use Clock.Stop()
        Everytime the clock-timer is changed you fire a sendSocketNotification('TIMER_UPDATE', totalSeconds) like int the MMM-NetworkScanner-project with sendSocketNotification('MAC_ADDRESSES', macAddresses) to inform the main module an show it to the mirror-screen.

        var Clock = {
          totalSeconds: 0,
        
          start: function () {
            var self = this;
        
            this.interval = setInterval(function () {
              self.totalSeconds += 1;
        
              console.log(Math.floor(self.totalSeconds / 60 % 60) + ':' + parseInt(self.totalSeconds % 60));
            }, 1000);
          },
        
            pause: function () {
              clearInterval(this.interval);
              delete this.interval;
            },
        
            resume: function () {
              if (!this.interval) this.start();
            },
        
            stop: function(){
                this.totalSeconds = 0;
                clearInterval(this.interval);
                delete this.interval;
            }
        };
        
        

        Looking for some building inspiration?
        Check out my large, thin and metal framed mirror on robstechlog.com.

        Modules released:
        MMM-GoogleAnalytics
        MMM-GrafanaChart
        MMM-GrafanaGauges

        1 Reply Last reply Reply Quote 1
        • S Offline
          Shifty
          last edited by Feb 2, 2017, 5:47 AM

          Hi,
          im on Holiday for some Days, but the week after next week i’m back home.
          After that i can help you with checking your code on my MM with my Toothbrush.

          I hope this will help you.

          1 Reply Last reply Reply Quote 0
          • A Offline
            aphex13
            last edited by Feb 16, 2017, 8:36 PM

            Hi @SvenSommer, thank you for the work! i will check the module in the next days!
            would i be possible to connect more the one brush (toothbrush_uuid)?

            thanks!

            1 Reply Last reply Reply Quote 0
            • FistandantilusF Offline
              Fistandantilus
              last edited by Jun 29, 2017, 8:55 PM

              Hi,

              I have tested the module today with a Oral B Genius 9000 toothbrush. I´m experiencing the same problems mentioned already in the old post. When I run brushTimer.js standalone in the module folder everything is working fine.
              To run it in MM I used:

              sudo npm rebuild --runtime=electron --target=1.6.11 --disturl=https://atom.io/download/atom-shell --abi=53
              

              MM is starting now but when I switch on the toothbrush nothing happens. It is just displaying “Seaching…”
              How can I fix that?

              regards,
              F.

              1 Reply Last reply Reply Quote 0
              • S Offline
                SvenSommer
                last edited by SvenSommer Jun 29, 2017, 9:29 PM Jun 29, 2017, 9:29 PM

                Hey @Fistandantilus,
                Thanks for checking out the module. Sorry for disappointing you, but the MMM-OralB-module is not finished yet. The module is not capable of displaying any other message than ‘Searching…’ right now.

                I stopped the development a few month ago, caused by the different matching results, we experienced in the testing phase at the individual toothbrushes.
                But I’m definitely interested in making this module.

                If you want to help me , you could send me your detailed test output of the scenario I pointed out before.

                Here are some details:

                • If the toothbrush is started bluetooth is activated for 3 Seconds.
                • If the brush is paused/stopped bluetooth is activated again for 32 Seconds.

                This leads to the following limited possiblities in tracking a brush session.

                • A start of a session is only trackable, if the programm/script has started with a (for 32 seconds) silent brush.
                • A stop is only trackable 3 seconds after start.
                • A stop/pause leads to a 32 Seconds “cooldown phase”, were no tracking is possible. This will reset the timer to 0:00.

                This is only helpfull if you do not interrupt you brushing session. :smile:

                If you wanna try the current setup you can run the script by:

                1. Enter your module-directory: cd ~/MagicMirror/modules
                2. Clone repository : git clone https://github.com/SvenSommer/MMM-OralB
                3. Enter new directory: cd ~/MagicMirror/modules/MMM-OralB
                4. Install dependencies: sudo apt-get install bluetooth bluez libbluetooth-dev libudev-dev
                5. Install noble module: npm install noble
                6. Exceute helper programm to find your brushID (this is not the mac-address): sudo node findBrushId.js
                  This should lead to a output like
                Searching for OralB Toothbrushes with manufacturerData: "dc00010205030000000101"...
                changed state to:poweredOn
                Found OralB Tootbrush with ID: 544a1621209f
                
                
                1. Copy and paste your ID into the brushTimer.js file: sudo nano brushTimer.js
                  (Save and exit with STRG + O and STRG + X )
                "use strict";
                
                var NodeHelper = require("node_helper");
                var noble = require('noble');
                
                //Copy Paste your ID here 
                var toothbrush_uuid = '544a1621209f';
                
                1. Run script with sudo node brushTimer.js
                  This should lead to an output like:
                scanning started...
                Toothbrush is running
                0:1
                0:2
                0:3
                0:4
                0:5
                0:6
                0:7
                0:8
                0:9
                0:10
                0:11
                0:12
                0:13
                0:14
                0:15
                0:16
                0:17
                0:18
                Toothbrush stopped. "Cool down" for 32 seconds needed!
                
                

                Looking for some building inspiration?
                Check out my large, thin and metal framed mirror on robstechlog.com.

                Modules released:
                MMM-GoogleAnalytics
                MMM-GrafanaChart
                MMM-GrafanaGauges

                1 Reply Last reply Reply Quote 1
                • FistandantilusF Offline
                  Fistandantilus
                  last edited by Fistandantilus Jul 2, 2017, 10:25 AM Jul 2, 2017, 5:57 AM

                  Good morning,

                  this is the result of brushtimer.js when I start the brush and stop it just by enableling bluetooth:

                  scanning started...
                  Toothbrush connection ALIVE atSun Jul 02 2017 07:39:55 GMT+0200 (CEST)
                  Toothbrush is running
                  0:1
                  0:2
                  0:3
                  0:4
                  0:5
                  0:6
                  0:7
                  0:8
                  0:9
                  0:10
                  0:11
                  0:12
                  0:13
                  0:14
                  0:15
                  0:16
                  0:17
                  0:18
                  0:19
                  0:20
                  0:21
                  0:22
                  0:23
                  0:24
                  0:25
                  0:26
                  0:27
                  0:28
                  0:29
                  0:30
                  0:31
                  Toothbrush connection LOST at Sun Jul 02 2017 07:40:27 GMT+0200 (CEST) was alive since Sun Jul 02 2017 07:39:55 GMT+0200 (CEST)
                  Cooldown was432033 sec => => resetting timer
                  

                  When I start the real operating mode the timer doesn´t stop when I stop brushing because the bluetooth connection stays alive. So your described scenario is working as expected.

                  Did you try to contact Oral-B to see if there are sdk´s available for other platforms as well? Getting the connection status in a first step is great but of course all other information the brush is sending should be visualized as well to get rid of the mobile app.

                  1 Reply Last reply Reply Quote 0
                  • FistandantilusF Offline
                    Fistandantilus
                    last edited by yawns Jul 2, 2017, 9:53 AM Jul 2, 2017, 6:12 AM

                    Just sent a mail to Oral-B ;)

                    Hi,

                    you may already have heard about the raspberry pi project Magic Mirror (https://magicmirror.builders/). This is a project to display information on a mirror using a semi transparent mirror glas and a monitor behind. As most mirrors are used in bathrooms what is obviously? Exactly people are using toothbrushes in front of it. The timer and the app you are offering are great but as we already have the possibility to display information on the mirror itself we would like to get rid of addidional equipment and would like to build a module that is able to visualize the information your toothbrushes are sending. We kindly request your support to get that feature into the project.

                    best regards,
                    Sven

                    1 Reply Last reply Reply Quote 0
                    • S Offline
                      SvenSommer
                      last edited by SvenSommer Jul 2, 2017, 10:09 PM Jul 2, 2017, 10:09 PM

                      That’s an quite a nice offer…
                      Email is out, I’ll keep you updated.

                      Looking for some building inspiration?
                      Check out my large, thin and metal framed mirror on robstechlog.com.

                      Modules released:
                      MMM-GoogleAnalytics
                      MMM-GrafanaChart
                      MMM-GrafanaGauges

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 6
                      • 7
                      • 1 / 7
                      • First post
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy