TrigBoardV4

From Kevin Darrah Wiki
Jump to: navigation, search

...Back to Projects:

TrigBoardfountain2.jpg

The trigBoard is an IoT project that does one thing - it pushes you a notification triggered by a digital input. Well, it's much more than that, but this is the inspiration. I wanted to design a WiFi board that essentially sleeps most of its life, but when that door switch, flood sensor, motion sensor, etc.. gets triggered, I just want a notification immediately on my phone. And that's about it... a perfect IoT device in the background doing its job.

Latest Release Version 4

TrigBoard overhead.jpg

  • Simple IoT development board that was designed to trigger "Push Notifications" on a smart phone/tablet based on a trigger event.
  • Unique low-power front-end to enable sub 1uA sleep current - uses a pulse to trigger wake-up, so even if door/window/etc is opened, the same ultra low currents can be maintained. Compare to standard pull-up/down resistor based digital input designs with significantly higher leakage current.
  • The board will wake itself up once an hour to check the battery voltage - if running low, a push notification is sent to warn the user. This timer can be used to check other things as well - temperature changes, accelerometers, or other environmental sensors.
  • Based on ESP8266 WiFi Module (ESP-12S) - all source code is available for download and developed in the popular Arduino IDE.
  • Battery Input can be any Lithium Polymer 3.7V - standard micro JST connector jack is used (please double check polarity),any of these would work nicely.
  • Sensor input to trigger the "Wake Up" is a simple passive switch. Typically a standard magnetic door/window switch is used and the board can be configured to wake on the "opening" (Normally Closed) or "closure" (Normally Open) of the contact. Solder jumpers set this - Normally Closed is Default, so standard door/window switches wake the board up when opened.
  • Battery Charging On-Board via MicroUSB - set for 4.2V at 500mA. 5V input pads broken out for energy harvesting experimentation.
  • Dimensions only 0.8" x 1.6 " (20.32mm x 40.64mm)

Trigboard Diagram.png

What is the trigBoard?

Demo and Base Code [Released 12/18/17] walkthrough 

Purchase trigBoard

Tindie-larges.png

Out of the Box Setup

The setup for getting the trigBoard installed is very easy. The base firmware that comes loaded on the board is ready to work with Pushbullet. This is a service that has many other features, but for the trigBoard, this offered a simple way for the push notification to be triggered using an "off the shelf" platform. It's all simple to get setup - just follow these steps:

  1. Push Bullet Setup
    1. Go here: https://www.pushbullet.com and sign-in. You can do this (currently) with Facebook or Google - I use Google
    2. Download the mobile app for iOS or Android, and sign in. You can also setup push notifications for your computers as well by installing the browser plugins. You may even like getting the desktop notifications better.
    3. Go back to your account page, click on settings, then "Generate Access Token". Copy the entire "o.xxxxx" token and save this somewhere. This is what you will use to provision the trigBoard to your Push Bullet account. I actually use the same token for every trigBoard.

PushBulletToken.png

  1. trigBoard Setup
    1. You will need a 3.7V Lithium Battery - fully charged will be 4.2V. The battery connects to the trigBoard using a standard micro-JST connector. Any of these would work. Battery estimator calculations coming soon, but I typically use a ~1000mAh battery on all my doors/windows... that yields very long battery life.
    2. Then for the sensor input, this can be a simple passive switch, but I use magnetic door/window sensors like these and then solder the wires to the JST connector. For the JST side, I go with these. It would be nice to find magnetic switches with the JST connectors already soldered on... Also, keep in mind that by default, the board is configured to "Wake" when the contact opens. This is the normally closed mode of operation. If it is desired to wake on a closure of the contact, then see the diagram above and desolder the NC solder jumpers (ensure they are open) and solder across the NO jumpers (make sure they are closed). That default NC configuration was chosen because the magnetic door/window sensors are closed when the magnet is in proximity, so the trigBoard wakes up when the door/window is opened.
    3. IMPORTANT - The trigBoard performs a calibration on the built-in timer on power-up. The sensor input must be closed when powered up, otherwise the 1hr timer will not be accurate. You basically just need to have the door/window closed before the battery is plugged in.
    4. Before mounting the trigBoard in it's final location, a simple bench test is helpful to make sure everything is setup. With the battery and sensor plugged in, simply bring the magnet close to the sensor, hold there for a second, then pull away. You should see the blue LED on the board go solid. If you don't have the sensor part yet or plan on using something else, just press and hold the 'wake' button on the board for a second. Since this is the first time the board has been powered up at this location, it will need to be provisioned for your network. When that LED is ON, you have 2minutes to provision before it gives up and goes back to sleep.
      1. Go to your network settings, to expose available WiFi networks. You should see "trigBoard". Go ahead and connect to this network. A captive portal window should automatically pop up:

TrigBoardcaptive.png

If you don't see a captive portal, you may need to open your browser and attempt to load a website. Try to google something. If you still don't see the portal, then you can try connecting directly to the board - in the browser, type in 192.168.4.1 in the address box. That should connect you to the portal. If you're still having problems, try disconnecting the battery from the board and allow the trigBoard SSID to fade away from the available networks on your computer. Then plug the battery back in and try again. Seems that on windows this may take more than one try.

Click configure, and select the network that you trigBoard to use and enter in the password. You'll now see where you want to enter in the Pushbullet "o.xxx" access token. Then you can give the board a name, and a trigger message. Once that's entered in, click Save and you're all done! You should now get a push notification to your phone (when you installed the app, make sure you gave permission).

Captivesetup.png

Note - the free version of Pushbullet limits the maximum number of messages per month. I have so many of these boards installed, that I upgraded... the monthly fee (at the time of writing this) was very reasonable.

Operation

Base Firmware

Note! the board is preloaded with the base firmware out-of-the-box, but if you want to develop/modify your own firmware, this section will go through the steps for getting the base code to compile.

Base Firmware Downloads:

Released 10/08/18
Changes: updated code slightly to work with latest version of libs and ESP core
Tested on Arduino v1.8.7, ESP core v2.4.2, WiFi Manager v0.14.0, Arduino JSON v5.13.3
Released 12/18/17
Tested on Arduino v1.8.3, ESP core v2.3.0, WiFi Manager v0.12.0, Arduino JSON v5.11.1

Base Firmware Developed on Arduino IDE - can download Here or Here for previous versions

Then you'll find that the code does not compile and that's because you need several libraries and the board manager installed. Here's what you need:

First, go to File>>Preferences and add this URL to to the "Additional Boards Manager URL". http://arduino.esp8266.com/stable/package_esp8266com_index.json

BoardsManagerURLnewCore.png

Now, the ESP8266 boards will be available for installation. Go to Tools>>Board>>Boards Manager... Search for ESP8266, and go ahead and click install.

ESP8266Install.png

After the boards are installed, you can select any of the ESP8266 boards out there from the Board Selection. For the trigBoard, I have been using the Adafruit Huzzah, here are my settings. Note that I always upload as fast as possible:

TrigHuzzahSettings.png

These settings also work:

EspsettingNodeMCU.png

Next, you'll need to install the specific Arduino Libraries I'm using in the base code. The first one is is the WiFi Manager by tzapu - the easiest way to install the library is to go to Sketch>>Include Library>>Manage Libraries. Then type in WIFImanager. Go ahead and install the library.

WiFiManager.png

Do the same for the Arduino JSON library by Benoit Blanchon - can just search for JSON.

ArduinoJSON.png

Then that should be it - the other libraries are automatically installed with the ESP8266 board manager.

See the "Testing and Programming" section below for information on loading the code over a wired USB-Serial connection. The other option is to load code wirelessly "OTA - Over the Air". In the "trigBoard Operation" section this is shown.

Projects

WeatherBoard BME280 and LMT01 Weather Station

EPaperBoard E-Paper Display

CameraBoard Camera System with Arducam

Testing and Programming

Note that the USB-Serial Converter that I designed is known to work - other versions of it may not. Here is the wiki page for the USB-Serial Board: The_USB_to_Serial_Converter:

The sequence for for configuring the board into programming mode with the buttons is as follows:

TrigBoardButtonSequence.png

Note that it may take a few tries to get it to upload, so don't give up if it fails after a few tries, I personally load code onto every board that ships, so I know it's possible.

Tutorials

V4 Hardware Walkthrough

Sending to SLACK

Clear Sky Checker - openweathermap.org

CODE IS HERE: http://kevindarrah.com/micro/Pusher/trigBoardOpenWeather.zip

Add a Camera

Go to the CameraBoard page

Schematic

TrigBoardv4SCH.png

Disclaimer

I'm just a guy who designs boards, so I'll try my best to support you as much as I can and provide tutorials as I have time for. Every board that is sold has been functionally tested, so that they can be programmed, the sleep current is right, they can be woken up, the battery voltage measurement is "close", and active current is consistent with a working board. Also, these boards are for educational, hobbyists, DIYer, maker, and development use only. If you are interested in working this board into your product, please contact me for more information