<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Multiple interuppts: One Arduino with two door sensors?]]></title><description><![CDATA[<p dir="auto">I've been looking around the forum for a solution, but haven't found one. I have one arduino and two door/window sensors. One sensor will be on my apartments front door, while the other sensor will sit on the mailbox-slot.</p>
<p dir="auto">The problem is that I don't know how to get two interrupts running at the same time. So if the door opens, one interrupt should trigger. And if I get mail (and the slot opens) the second interrupt should trigger.</p>
<p dir="auto">I'm using an arduino pro mini 328p.</p>
<p dir="auto">Here's my code:</p>
<pre><code>#include &lt;MySensor.h&gt;
#include &lt;SPI.h&gt;
#include &lt;Bounce2.h&gt;

#define CHILD_ID_DOOR 0
#define CHILD_ID_MAIL 1
#define DOOR_PIN  2  // Arduino Digital I/O pin for button/reed switch
#define MAIL_PIN  3  // Arduino Digital I/O pin for button/reed switch

#define INTERRUPT DOOR_PIN-2 
#define INTERRUPTMAIL_PIN-3 

// For lipo gauge
#include "Arduino.h"
#include "Wire.h"
#include "MAX1704.h"

MAX1704 fuelGauge;
int oldBatteryPcnt = 0;


unsigned long SLEEP_TIME = 86400000; // 1 day


MySensor gw;
Bounce debouncer_door = Bounce(); 
Bounce debouncer_mail = Bounce(); 
int oldValue_door = -1;
int oldValue_mail = -1;

// Change to V_LIGHT if you use S_LIGHT in presentation below
MyMessage msgDoor(CHILD_ID_DOOR,V_TRIPPED);
MyMessage msgMail(CHILD_ID_MAIL,V_TRIPPED);

void setup()  
{  
  // Fuel gague
  fuelGauge.reset();
  fuelGauge.quickStart();
  fuelGauge.showConfig();
  
  gw.begin();

  // Setup the button
  pinMode(DOOR_PIN,INPUT);
  // Activate internal pull-up
  digitalWrite(DOOR_PIN,HIGH);
  
  pinMode(MAIL_PIN,INPUT);
  // Activate internal pull-up
  digitalWrite(MAIL_PIN,HIGH);
  
  // After setting up the button, setup debouncer
  debouncer_door.attach(DOOR_PIN);
  debouncer_door.interval(5);
  
  debouncer_mail.attach(DOOR_PIN);
  debouncer_mail.interval(5);
  
  // Register binary input sensor to gw (they will be created as child devices)
  // You can use S_DOOR, S_MOTION or S_LIGHT here depending on your usage. 
  // If S_LIGHT is used, remember to update variable type you send in. See "msg" above.
  gw.present(CHILD_ID_DOOR, S_DOOR);
  gw.present(CHILD_ID_MAIL, S_DOOR);  
}


//  Check if digital input has changed and send in new value
void loop() 
{
  
  // Fuel gauge
  int batteryPcnt = fuelGauge.stateOfCharge();
  
  if (oldBatteryPcnt != batteryPcnt) {
     // Power up radio after sleep
     gw.sendBatteryLevel(batteryPcnt);
     oldBatteryPcnt = batteryPcnt;
   }
  
  // Door
  debouncer_door.update();
  // Get the update value
  int value_door = debouncer_door.read();
 
  if (value_door != oldValue_door) {
     // Send in the new value
     gw.send(msgDoor.set(value_door==HIGH ? 1 : 0));
     oldValue_door = value_door;
  }
  
  // Mail
  debouncer_mail.update();
  // Get the update value
  int value_mail = debouncer_mail.read();
 
  if (value_mail != oldValue_mail) {
     // Send in the new value
     gw.send(msgMail.set(value_mail==HIGH ? 1 : 0));
     oldValue_mail = value_mail;
  }
  
  gw.sleep(INTERRUPT,CHANGE, SLEEP_TIME);
}
</code></pre>
<p dir="auto">I'm a bit proud to have built this into a small enclosure. Here's a photo :)</p>
<p dir="auto"><img src="/uploads/upload-535308ec-e1a1-4904-be64-3059e19f6a90.jpg" alt="2015-01-08 12.08.54.jpg" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.mysensors.org/topic/795/multiple-interuppts-one-arduino-with-two-door-sensors</link><generator>RSS for Node</generator><lastBuildDate>Mon, 11 May 2026 18:08:55 GMT</lastBuildDate><atom:link href="https://forum.mysensors.org/topic/795.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 08 Jan 2015 14:43:34 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Sun, 25 Jan 2015 00:29:31 GMT]]></title><description><![CDATA[<p dir="auto">2 part video showing how to tie the TP4056 and MAX17043 boards together and to an arduino pro mini.<br />
Part 1:<br />
<a href="https://www.youtube.com/watch?v=3yHRrPDczK4" rel="nofollow ugc">https://www.youtube.com/watch?v=3yHRrPDczK4</a></p>
<p dir="auto">Part 2:<br />
<a href="https://www.youtube.com/watch?v=ZtkIDwkrc6E" rel="nofollow ugc">https://www.youtube.com/watch?v=ZtkIDwkrc6E</a></p>
]]></description><link>https://forum.mysensors.org/post/9195</link><guid isPermaLink="true">https://forum.mysensors.org/post/9195</guid><dc:creator><![CDATA[Paul Augusto]]></dc:creator><pubDate>Sun, 25 Jan 2015 00:29:31 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Sat, 24 Jan 2015 17:59:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hek" aria-label="Profile: hek">@<bdi>hek</bdi></a> The TP4056 is the charger module. I didn't know you meant the fuel gauge. They are two separate boards which I solder together to one part. :)</p>
]]></description><link>https://forum.mysensors.org/post/9156</link><guid isPermaLink="true">https://forum.mysensors.org/post/9156</guid><dc:creator><![CDATA[algoritm]]></dc:creator><pubDate>Sat, 24 Jan 2015 17:59:05 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Thu, 22 Jan 2015 11:55:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/algoritm" aria-label="Profile: algoritm">@<bdi>algoritm</bdi></a></p>
<p dir="auto">But the one you linked didn't have any I2C interface. How about this?<br />
<a href="http://www.ebay.com.au/itm/Detection-Alarm-Module-A-D-Conversion-IIC-MAX17043-New-LiPo-Fuel-Gauge-Battery-/400749711661" rel="nofollow ugc">http://www.ebay.com.au/itm/Detection-Alarm-Module-A-D-Conversion-IIC-MAX17043-New-LiPo-Fuel-Gauge-Battery-/400749711661</a>?</p>
]]></description><link>https://forum.mysensors.org/post/9017</link><guid isPermaLink="true">https://forum.mysensors.org/post/9017</guid><dc:creator><![CDATA[hek]]></dc:creator><pubDate>Thu, 22 Jan 2015 11:55:11 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Thu, 22 Jan 2015 11:40:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hek" aria-label="Profile: hek">@<bdi>hek</bdi></a> They are great and very cheap. Just make sure you get the latest version of the board (the one with the micro-usb). <a href="http://www.ebay.com/itm/10pcs-Micro-USB-TP4056-1A-Li-ion-Battery-Charging-Board-Lithium-Charger-Module-/331244102819?pt=LH_DefaultDomain_0&amp;hash=item4d1fafe4a3" rel="nofollow ugc">10pcs for $7 on Ebay.</a></p>
]]></description><link>https://forum.mysensors.org/post/9016</link><guid isPermaLink="true">https://forum.mysensors.org/post/9016</guid><dc:creator><![CDATA[algoritm]]></dc:creator><pubDate>Thu, 22 Jan 2015 11:40:50 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Thu, 22 Jan 2015 06:36:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/algoritm" aria-label="Profile: algoritm">@<bdi>algoritm</bdi></a> said:</p>
<blockquote>
<p dir="auto">TP4056</p>
</blockquote>
<p dir="auto">Ok, need to have one of these to play with myself.</p>
<p dir="auto">We should probably have an example of using it distributed with the MySensors library.  Might steal something from the code posted here.</p>
]]></description><link>https://forum.mysensors.org/post/9002</link><guid isPermaLink="true">https://forum.mysensors.org/post/9002</guid><dc:creator><![CDATA[hek]]></dc:creator><pubDate>Thu, 22 Jan 2015 06:36:13 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Wed, 21 Jan 2015 22:45:51 GMT]]></title><description><![CDATA[<p dir="auto">I found this example file to work much better. The battery drained a lot slower.</p>
<pre><code>  // Interrupt driven binary switch example with dual interrupts
  // Author: Patrick 'Anticimex' Fallberg
  // Connect one button or door/window reed switch between 
  // digitial I/O pin 3 (BUTTON_PIN below) and GND and the other
  // one in similar fashion on digital I/O pin 2.
  // This example is designed to fit Arduino Nano/Pro Mini

  // For lipo gauge
  #include "Arduino.h"
  #include "Wire.h"
  #include "MAX1704.h"

  MAX1704 fuelGauge;
  int oldBatteryPcnt = 0;

  #include &lt;MySensor.h&gt;
  #include &lt;SPI.h&gt;

  #define SKETCH_NAME "Binary Sensor"
  #define SKETCH_MAJOR_VER "1"
  #define SKETCH_MINOR_VER "0"

  #define PRIMARY_CHILD_ID 3
  #define SECONDARY_CHILD_ID 4

  #define PRIMARY_BUTTON_PIN 2   // Arduino Digital I/O pin for button/reed switch
  #define SECONDARY_BUTTON_PIN 3 // Arduino Digital I/O pin for button/reed switch

  #if (PRIMARY_BUTTON_PIN &lt; 2 || PRIMARY_BUTTON_PIN &gt; 3)
  #error PRIMARY_BUTTON_PIN must be either 2 or 3 for interrupts to work
  #endif
  #if (SECONDARY_BUTTON_PIN &lt; 2 || SECONDARY_BUTTON_PIN &gt; 3)
  #error SECONDARY_BUTTON_PIN must be either 2 or 3 for interrupts to work
  #endif
  #if (PRIMARY_BUTTON_PIN == SECONDARY_BUTTON_PIN)
  #error PRIMARY_BUTTON_PIN and BUTTON_PIN2 cannot be the same
  #endif
  #if (PRIMARY_CHILD_ID == SECONDARY_CHILD_ID)
  #error PRIMARY_CHILD_ID and SECONDARY_CHILD_ID cannot be the same
  #endif
   
  MySensor sensor_node;

  // Change to V_LIGHT if you use S_LIGHT in presentation below
  MyMessage msg(PRIMARY_CHILD_ID, V_TRIPPED);
  MyMessage msg2(SECONDARY_CHILD_ID, V_TRIPPED);

  void setup()  
  {  
    sensor_node.begin();

    // Setup the buttons
    pinMode(PRIMARY_BUTTON_PIN, INPUT);
    pinMode(SECONDARY_BUTTON_PIN, INPUT);

    // Activate internal pull-ups
    digitalWrite(PRIMARY_BUTTON_PIN, HIGH);
    digitalWrite(SECONDARY_BUTTON_PIN, HIGH);
    
    // Send the sketch version information to the gateway and Controller
    sensor_node.sendSketchInfo(SKETCH_NAME, SKETCH_MAJOR_VER"."SKETCH_MINOR_VER);

    // Register binary input sensor to sensor_node (they will be created as child devices)
    // You can use S_DOOR, S_MOTION or S_LIGHT here depending on your usage. 
    // If S_LIGHT is used, remember to update variable type you send in. See "msg" above.
    sensor_node.present(PRIMARY_CHILD_ID, S_DOOR);  
    sensor_node.present(SECONDARY_CHILD_ID, S_DOOR);  
  }

  // Loop will iterate on changes on the BUTTON_PINs
  void loop() 
  {
    uint8_t value;
    static uint8_t sentValue=2;
    static uint8_t sentValue2=2;

    // Short delay to allow buttons to properly settle
    sensor_node.sleep(5);
    
    value = digitalRead(PRIMARY_BUTTON_PIN);
    
    if (value != sentValue) {
       // Value has changed from last transmission, send the updated value
       sensor_node.send(msg.set(value==HIGH ? 1 : 0));
       sentValue = value;
    }

    value = digitalRead(SECONDARY_BUTTON_PIN);
    
    if (value != sentValue2) {
       // Value has changed from last transmission, send the updated value
       sensor_node.send(msg2.set(value==HIGH ? 1 : 0));
       sentValue2 = value;
    }
    
    // Fuel gauge
    int batteryPcnt = fuelGauge.stateOfCharge();
    if (oldBatteryPcnt != batteryPcnt) 
    {
       sensor_node.sendBatteryLevel(batteryPcnt);
       oldBatteryPcnt = batteryPcnt;
     }
   
    // Sleep until something happens with the sensor
    sensor_node.sleep(PRIMARY_BUTTON_PIN-2, CHANGE, SECONDARY_BUTTON_PIN-2, CHANGE, 0);
  }
</code></pre>
]]></description><link>https://forum.mysensors.org/post/8990</link><guid isPermaLink="true">https://forum.mysensors.org/post/8990</guid><dc:creator><![CDATA[algoritm]]></dc:creator><pubDate>Wed, 21 Jan 2015 22:45:51 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Wed, 21 Jan 2015 22:23:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gadu" aria-label="Profile: gadu">@<bdi>gadu</bdi></a> said:</p>
<blockquote>
<p dir="auto">How about 3 doorsensors? Just +1 on everything?</p>
</blockquote>
<p dir="auto">You could make an or gate, with a couple of diodes, then you only only need 1 interrupt pin. If you need to check which one of the reed switches was triggered, you could wire each of them to a separate input on the arduino as well as the input to the or gate.</p>
]]></description><link>https://forum.mysensors.org/post/8989</link><guid isPermaLink="true">https://forum.mysensors.org/post/8989</guid><dc:creator><![CDATA[tbowmo]]></dc:creator><pubDate>Wed, 21 Jan 2015 22:23:39 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Wed, 21 Jan 2015 21:31:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gadu" aria-label="Profile: gadu">@<bdi>gadu</bdi></a></p>
<p dir="auto">there are two external interrupts on most Arduino... but Mega has six.<br />
so yes, you can extend the code above if you have the right hardware.</p>
<p dir="auto">but... <a class="plugin-mentions-user plugin-mentions-a" href="/user/hek" aria-label="Profile: hek">@<bdi>hek</bdi></a> 's  library may not support more than two.</p>
]]></description><link>https://forum.mysensors.org/post/8985</link><guid isPermaLink="true">https://forum.mysensors.org/post/8985</guid><dc:creator><![CDATA[BulldogLowell]]></dc:creator><pubDate>Wed, 21 Jan 2015 21:31:44 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Wed, 21 Jan 2015 17:52:12 GMT]]></title><description><![CDATA[<p dir="auto">How about 3 doorsensors? Just +1 on everything?</p>
]]></description><link>https://forum.mysensors.org/post/8975</link><guid isPermaLink="true">https://forum.mysensors.org/post/8975</guid><dc:creator><![CDATA[gadu]]></dc:creator><pubDate>Wed, 21 Jan 2015 17:52:12 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Wed, 21 Jan 2015 12:44:07 GMT]]></title><description><![CDATA[<p dir="auto">Here's the finished script.</p>
<pre><code>  #include &lt;MySensor.h&gt;
  #include &lt;SPI.h&gt;
  // For lipo gauge
  #include "Arduino.h"
  #include "Wire.h"
  #include "MAX1704.h"

  #define DOOR_ID 3
  #define MAILBOX_ID 2

  #define DOOR_PIN  3  // Arduino Digital I/O pin for button/reed switch
  #define MAILBOX_PIN 2
  //
  MAX1704 fuelGauge;
  int oldBatteryPcnt = 0;
  //
  MySensor gw;
  byte oldValue[2] = { -1, -1};
  //
  unsigned long sleepTime = 86400000UL; // 1 day

  // Change to V_LIGHT if you use S_LIGHT in presentation below
  //MyMessage msg(DOOR_PIN,V_TRIPPED);

  MyMessage msg[2];

  void setup()  
  {  
    // Fuel gauge
    fuelGauge.reset();
    fuelGauge.quickStart();
    fuelGauge.showConfig();
    //
    gw.begin();
    
    // Setup the buttons and Activate internal pull-ups
    pinMode(DOOR_PIN,INPUT_PULLUP);
    pinMode(MAILBOX_PIN, INPUT_PULLUP);

    // Set sensor (pin)
    msg[0].setSensor(DOOR_ID);
    msg[1].setSensor(MAILBOX_ID);

    // Set sensor (type)
    msg[0].setType(V_TRIPPED);
    msg[1].setType(V_TRIPPED);
    
    
    gw.present(DOOR_ID, S_DOOR);
    gw.present(MAILBOX_ID, S_DOOR);
  }
  //
  void loop() 
  {
    // Fuel gauge
    int batteryPcnt = fuelGauge.stateOfCharge();
    if (oldBatteryPcnt != batteryPcnt) 
    {
       gw.sendBatteryLevel(batteryPcnt);
       oldBatteryPcnt = batteryPcnt;
     }
     //
    for (byte i = 0; i &lt; 2; i++)
    {
      debouncer[i].update();
      int value = debouncer[i].read();
      
      //if (value != oldValue[i]);  
      gw.send(msg[i].set(value == HIGH? 1 : 0), false); 
      oldValue[i] = value;
       
    }
    gw.sleep(DOOR_PIN - 2, CHANGE, MAILBOX_PIN - 2, CHANGE, sleepTime);
  }
</code></pre>
]]></description><link>https://forum.mysensors.org/post/8959</link><guid isPermaLink="true">https://forum.mysensors.org/post/8959</guid><dc:creator><![CDATA[algoritm]]></dc:creator><pubDate>Wed, 21 Jan 2015 12:44:07 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Fri, 09 Jan 2015 19:16:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/algoritm" aria-label="Profile: algoritm">@<bdi>algoritm</bdi></a></p>
<p dir="auto">OK, but we should be able to do it with the sleep/wake returning the interrupt number and executing only the pin change on one child... I have to play with that if I can get this rigged.</p>
]]></description><link>https://forum.mysensors.org/post/8497</link><guid isPermaLink="true">https://forum.mysensors.org/post/8497</guid><dc:creator><![CDATA[BulldogLowell]]></dc:creator><pubDate>Fri, 09 Jan 2015 19:16:44 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Fri, 09 Jan 2015 15:30:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bulldoglowell" aria-label="Profile: BulldogLowell">@<bdi>BulldogLowell</bdi></a> Thank you! It finally works! I'll make a sketch with comments so other people can use it later for reference.</p>
]]></description><link>https://forum.mysensors.org/post/8484</link><guid isPermaLink="true">https://forum.mysensors.org/post/8484</guid><dc:creator><![CDATA[algoritm]]></dc:creator><pubDate>Fri, 09 Jan 2015 15:30:29 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Fri, 09 Jan 2015 15:26:55 GMT]]></title><description><![CDATA[<p dir="auto">like this?</p>
<pre><code>// Simple binary switch example 
//USING TWO INTERRUPTS
//
#include &lt;MySensor.h&gt;
#include &lt;SPI.h&gt;
// For lipo gauge
#include "Arduino.h"
#include "Wire.h"
#include "MAX1704.h"
//
#define DOOR_PIN  3  // Arduino Digital I/O pin for button/reed switch
#define MAILBOX_PIN 2
//
MAX1704 fuelGauge;
int oldBatteryPcnt = 0;
//
MySensor gw;
//
unsigned long sleepTime = 86400000UL; // 1 day

// Change to V_LIGHT if you use S_LIGHT in presentation below
MyMessage msg1(DOOR_PIN - 2,V_TRIPPED);
MyMessage msg0(MAILBOX_PIN - 2,V_TRIPPED);
//
void setup()  
{  
  // Fuel gauge
  fuelGauge.reset();
  fuelGauge.quickStart();
  fuelGauge.showConfig();
  //
  gw.begin();
  // Setup the buttons and Activate internal pull-ups
  pinMode(DOOR_PIN,INPUT_PULLUP);
  pinMode(MAILBOX_PIN, INPUT_PULLUP);
  //
  gw.present(DOOR_PIN-2, S_DOOR);
  delay(250);
  gw.present(MAILBOX_PIN-2, S_DOOR);
}
//
void loop() 
{
  // Fuel gauge
  int batteryPcnt = fuelGauge.stateOfCharge();
  if (oldBatteryPcnt != batteryPcnt) 
  {
    gw.sendBatteryLevel(batteryPcnt);
    oldBatteryPcnt = batteryPcnt;
  }
  int value0 = digitalRead(MAILBOX_PIN);
  int value1 = digitalRead(DOOR_PIN);
  gw.send(msg0.set(value0 == HIGH? 1 : 0), false); 
  gw.send(msg1.set(value1 == HIGH? 1 : 0), false); 
  gw.sleep(DOOR_PIN - 2, CHANGE, MAILBOX_PIN - 2, CHANGE, sleepTime);
}
</code></pre>
]]></description><link>https://forum.mysensors.org/post/8483</link><guid isPermaLink="true">https://forum.mysensors.org/post/8483</guid><dc:creator><![CDATA[BulldogLowell]]></dc:creator><pubDate>Fri, 09 Jan 2015 15:26:55 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Fri, 09 Jan 2015 15:20:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bulldoglowell" aria-label="Profile: BulldogLowell">@<bdi>BulldogLowell</bdi></a> said:</p>
<blockquote>
<p dir="auto">MyMessage msg(0,V_TRIPPED);</p>
</blockquote>
<p dir="auto">So I need to call MyMessage twice. one for each sensor ID? How do I do that without making two instances? That is kind of what I have been trying to do, but I'm having trouble with the syntax.</p>
]]></description><link>https://forum.mysensors.org/post/8481</link><guid isPermaLink="true">https://forum.mysensors.org/post/8481</guid><dc:creator><![CDATA[algoritm]]></dc:creator><pubDate>Fri, 09 Jan 2015 15:20:03 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Fri, 09 Jan 2015 14:57:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/algoritm" aria-label="Profile: algoritm">@<bdi>algoritm</bdi></a> said:</p>
<blockquote>
<p dir="auto">MyMessage msg(<strong>&lt;sensorId&gt;</strong>,V_TRIPPED);</p>
</blockquote>
<p dir="auto">You must report data on on two different sensor ids.</p>
<p dir="auto">DOOR_PIN and MAILBOX_PIN was used during presentation so also use them when reporting values to controller.</p>
<p dir="auto">The sleep function I linked returns which interrupt that was triggered. Use it to determine which sensor to report on.</p>
<p dir="auto">Debouncer will probably not work if you also sleep the node.</p>
]]></description><link>https://forum.mysensors.org/post/8479</link><guid isPermaLink="true">https://forum.mysensors.org/post/8479</guid><dc:creator><![CDATA[hek]]></dc:creator><pubDate>Fri, 09 Jan 2015 14:57:36 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Fri, 09 Jan 2015 14:49:13 GMT]]></title><description><![CDATA[<p dir="auto">The problem remains <a class="plugin-mentions-user plugin-mentions-a" href="/user/bulldoglowell" aria-label="Profile: BulldogLowell">@<bdi>BulldogLowell</bdi></a> . It's like the arduino is treating the two interrupts as one.</p>
<p dir="auto">The sensors react when trigger them, but it's only N2S1 (door) that shows up in my gateway (EasyIoT), and it always displays the same value (closed). I'm going to go over the wiring and the code again.</p>
<p dir="auto">Reading one sensor connected to one interrupt is simple... reading two seems impossible :)</p>
<p dir="auto">Here's the current state of the sketch:</p>
<pre><code>// Simple binary switch example 
//USING TWO INTERRUPTS
//
#include &lt;MySensor.h&gt;
#include &lt;SPI.h&gt;
#include &lt;Bounce2.h&gt;
// For lipo gauge
#include "Arduino.h"
#include "Wire.h"
#include "MAX1704.h"
//
#define DOOR_PIN  3  // Arduino Digital I/O pin for button/reed switch
#define MAILBOX_PIN 2
//
MAX1704 fuelGauge;
int oldBatteryPcnt = 0;
//
MySensor gw;
Bounce debouncer[2];
byte oldValue[2] = { -1, -1};
//
unsigned long sleepTime = 86400000UL; // 1 day

// Change to V_LIGHT if you use S_LIGHT in presentation below
MyMessage msg(0,V_TRIPPED);
//
void setup()  
{  
  // Fuel gauge
  fuelGauge.reset();
  
  // GW
  gw.begin();
  debouncer[0] = Bounce();
  debouncer[1] = Bounce();
  // Setup the buttons and Activate internal pull-ups
  pinMode(DOOR_PIN,INPUT_PULLUP);
  pinMode(MAILBOX_PIN, INPUT_PULLUP);
  //
  debouncer[0].attach(DOOR_PIN);
  debouncer[1].attach(MAILBOX_PIN);
  debouncer[0].interval(5);
  debouncer[1].interval(5);
  //
  gw.present(DOOR_PIN - 2, S_DOOR);
  delay(250);
  gw.present(MAILBOX_PIN - 2, S_DOOR);
}
//
void loop() 
{
  // Fuel gauge
  int batteryPcnt = fuelGauge.stateOfCharge();
  if (oldBatteryPcnt != batteryPcnt) 
  {
     gw.sendBatteryLevel(batteryPcnt);
     oldBatteryPcnt = batteryPcnt;
   }
   //
  for (byte i = 0; i &lt; 2; i++)
  {
    debouncer[i].update();
    int value = debouncer[i].read();
    if (value != oldValue[i]);
    gw.send(msg.setSensor(i).set(value == HIGH? 1 : 0), false); 
    oldValue[i] = value; 
  }
  gw.sleep(DOOR_PIN - 2, CHANGE, MAILBOX_PIN - 2, CHANGE, sleepTime);
}
</code></pre>
]]></description><link>https://forum.mysensors.org/post/8478</link><guid isPermaLink="true">https://forum.mysensors.org/post/8478</guid><dc:creator><![CDATA[algoritm]]></dc:creator><pubDate>Fri, 09 Jan 2015 14:49:13 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Fri, 09 Jan 2015 14:26:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/algoritm" aria-label="Profile: algoritm">@<bdi>algoritm</bdi></a></p>
<p dir="auto">same issue, basically.</p>
<p dir="auto">try this instead...  you should only need one instance of MyMessage</p>
<pre><code>MyMessage msg(0,V_TRIPPED);
</code></pre>
]]></description><link>https://forum.mysensors.org/post/8476</link><guid isPermaLink="true">https://forum.mysensors.org/post/8476</guid><dc:creator><![CDATA[BulldogLowell]]></dc:creator><pubDate>Fri, 09 Jan 2015 14:26:33 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Fri, 09 Jan 2015 14:22:09 GMT]]></title><description><![CDATA[<p dir="auto">Thanks again <a class="plugin-mentions-user plugin-mentions-a" href="/user/bulldoglowell" aria-label="Profile: BulldogLowell">@<bdi>BulldogLowell</bdi></a> :)</p>
<p dir="auto">I think I'm going a bit crazy over this. The problem remains.  Only the data for the door is being sent (it only sends closed), but not for the mailbox. Is it because I am defining only the door in the code  below?</p>
<pre><code> MyMessage msg(DOOR_PIN,V_TRIPPED);
</code></pre>
]]></description><link>https://forum.mysensors.org/post/8474</link><guid isPermaLink="true">https://forum.mysensors.org/post/8474</guid><dc:creator><![CDATA[algoritm]]></dc:creator><pubDate>Fri, 09 Jan 2015 14:22:09 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Fri, 09 Jan 2015 14:04:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bulldoglowell" aria-label="Profile: BulldogLowell">@<bdi>BulldogLowell</bdi></a> said:</p>
<blockquote>
<p dir="auto">gw.present(DOOR_PIN, S_DOOR);<br />
delay(250);<br />
gw.present(MAILBOX_PIN, S_DOOR);</p>
</blockquote>
<p dir="auto">yeah.... the device numbers need to match the for() counting:</p>
<pre><code>gw.present(DOOR_PIN - 2, S_DOOR);
  delay(250);
  gw.present(MAILBOX_PIN - 2, S_DOOR);
</code></pre>
<p dir="auto">that will instead create a child device zero and one</p>
<p dir="auto">I think that should do it.  that's what I get for not being able to test!</p>
]]></description><link>https://forum.mysensors.org/post/8472</link><guid isPermaLink="true">https://forum.mysensors.org/post/8472</guid><dc:creator><![CDATA[BulldogLowell]]></dc:creator><pubDate>Fri, 09 Jan 2015 14:04:23 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Fri, 09 Jan 2015 12:59:02 GMT]]></title><description><![CDATA[<p dir="auto">Thanks <a class="plugin-mentions-user plugin-mentions-a" href="/user/bulldoglowell" aria-label="Profile: BulldogLowell">@<bdi>BulldogLowell</bdi></a> for all your help! The interrupts are working now, but there is something wrong with the MyMessage function.</p>
<pre><code>MyMessage msg(DOOR_PIN,V_TRIPPED);
</code></pre>
<p dir="auto">Correct me if I am wrong, but it seems like we only instantiate it for the DOOR_PIN, but not for the MAILBOX_PIN. I tried a solution similar to how you instantiate the the bounce functions, but for some reason it does not work.</p>
<p dir="auto">What happens now is only one message gets sent (for the door). And it's also saying that it is always closed.</p>
<pre><code>gw.send(msg.setSensor(i).set(value == HIGH? 1 : 0), false); 
</code></pre>
<p dir="auto">I can see here that you use the setSensor method to the pin numbers 0 and 1 (interrupt pins?). But shouldn't it use the pins that we declare at the top?</p>
<pre><code> #define DOOR_PIN  3  // Arduino Digital I/O pin for button/reed switch
 #define MAILBOX_PIN 2
</code></pre>
]]></description><link>https://forum.mysensors.org/post/8470</link><guid isPermaLink="true">https://forum.mysensors.org/post/8470</guid><dc:creator><![CDATA[algoritm]]></dc:creator><pubDate>Fri, 09 Jan 2015 12:59:02 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Fri, 09 Jan 2015 02:30:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/algoritm" aria-label="Profile: algoritm">@<bdi>algoritm</bdi></a></p>
<p dir="auto">OK, I couldn't compile your example so I went at the problems.</p>
<p dir="auto">I added your battery library and your interrupts:</p>
<p dir="auto">(compiled but not tested)</p>
<pre><code>// Simple binary switch example 
//USING TWO INTERRUPTS
//
#include &lt;MySensor.h&gt;
#include &lt;SPI.h&gt;
#include &lt;Bounce2.h&gt;
// For lipo gauge
#include "Arduino.h"
#include "Wire.h"
#include "MAX1704.h"
//
#define DOOR_PIN  3  // Arduino Digital I/O pin for button/reed switch
#define MAILBOX_PIN 2
//
MAX1704 fuelGauge;
int oldBatteryPcnt = 0;
//
MySensor gw;
Bounce debouncer[2];
byte oldValue[2] = { -1, -1};
//
unsigned long sleepTime = 86400000UL; // 1 day

// Change to V_LIGHT if you use S_LIGHT in presentation below
MyMessage msg(DOOR_PIN,V_TRIPPED);
//
void setup()  
{  
  // Fuel gauge
  fuelGauge.reset();
  fuelGauge.quickStart();
  fuelGauge.showConfig();
  //
  gw.begin();
  debouncer[0] = Bounce();
  debouncer[1] = Bounce();
  // Setup the buttons and Activate internal pull-ups
  pinMode(DOOR_PIN,INPUT_PULLUP);
  pinMode(MAILBOX_PIN, INPUT_PULLUP);
  //
  debouncer[0].attach(DOOR_PIN);
  debouncer[1].attach(MAILBOX_PIN);
  debouncer[0].interval(5);
  debouncer[1].interval(5);
  //
  gw.present(DOOR_PIN, S_DOOR);
  delay(250);
  gw.present(MAILBOX_PIN, S_DOOR);
}
//
void loop() 
{
  // Fuel gauge
  int batteryPcnt = fuelGauge.stateOfCharge();
  if (oldBatteryPcnt != batteryPcnt) 
  {
     gw.sendBatteryLevel(batteryPcnt);
     oldBatteryPcnt = batteryPcnt;
   }
   //
  for (byte i = 0; i &lt; 2; i++)
  {
    debouncer[i].update();
    int value = debouncer[i].read();
    if (value != oldValue[i]);
    gw.send(msg.setSensor(i).set(value == HIGH? 1 : 0), false); 
    oldValue[i] = value; 
  }
  gw.sleep(DOOR_PIN - 2, CHANGE, MAILBOX_PIN - 2, CHANGE, sleepTime);
}
</code></pre>
]]></description><link>https://forum.mysensors.org/post/8457</link><guid isPermaLink="true">https://forum.mysensors.org/post/8457</guid><dc:creator><![CDATA[BulldogLowell]]></dc:creator><pubDate>Fri, 09 Jan 2015 02:30:03 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Thu, 08 Jan 2015 21:58:17 GMT]]></title><description><![CDATA[<p dir="auto">Thank you <a class="plugin-mentions-user plugin-mentions-a" href="/user/hek" aria-label="Profile: hek">@<bdi>hek</bdi></a>! I will try and solve it now, and then show my sketch here later.</p>
]]></description><link>https://forum.mysensors.org/post/8454</link><guid isPermaLink="true">https://forum.mysensors.org/post/8454</guid><dc:creator><![CDATA[algoritm]]></dc:creator><pubDate>Thu, 08 Jan 2015 21:58:17 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Thu, 08 Jan 2015 19:59:51 GMT]]></title><description><![CDATA[<p dir="auto">Have a look at the following provided in api<br />
<a href="https://github.com/mysensors/Arduino/blob/master/libraries/MySensors/MySensor.h#L235" rel="nofollow ugc">https://github.com/mysensors/Arduino/blob/master/libraries/MySensors/MySensor.h#L235</a></p>
<p dir="auto">It lets you do what you want without much problem (including attaching both interrupts).</p>
]]></description><link>https://forum.mysensors.org/post/8452</link><guid isPermaLink="true">https://forum.mysensors.org/post/8452</guid><dc:creator><![CDATA[hek]]></dc:creator><pubDate>Thu, 08 Jan 2015 19:59:51 GMT</pubDate></item><item><title><![CDATA[Reply to Multiple interuppts: One Arduino with two door sensors? on Thu, 08 Jan 2015 19:45:13 GMT]]></title><description><![CDATA[<p dir="auto">Thanks for the help <a class="plugin-mentions-user plugin-mentions-a" href="/user/bulldoglowell" aria-label="Profile: BulldogLowell">@<bdi>BulldogLowell</bdi></a>!</p>
<p dir="auto">I read your code, and I can see that you are setting the variables smarter than I. However, I can't seem to understand where you put the interrupts. Is the sensor going to sleep?</p>
<p dir="auto">The actual button/triggers were not the problem. It was how to set up the interrupts.</p>
]]></description><link>https://forum.mysensors.org/post/8450</link><guid isPermaLink="true">https://forum.mysensors.org/post/8450</guid><dc:creator><![CDATA[algoritm]]></dc:creator><pubDate>Thu, 08 Jan 2015 19:45:13 GMT</pubDate></item></channel></rss>