diff --git a/examples/bluetooth/heartrate-game/connectionhandler.cpp b/examples/bluetooth/heartrate-game/connectionhandler.cpp
index 6ca3f1d7c7d6e746e3085e26c00c2b7ac6b41c3c..d50841794737182beeaf40e7f7e02d0fef971066 100644
--- a/examples/bluetooth/heartrate-game/connectionhandler.cpp
+++ b/examples/bluetooth/heartrate-game/connectionhandler.cpp
@@ -38,6 +38,7 @@
 **
 ****************************************************************************/
 
+#include "heartrate-global.h"
 #include "connectionhandler.h"
 #include <QtDebug>
 
@@ -49,7 +50,7 @@ ConnectionHandler::ConnectionHandler(QObject *parent) : QObject(parent)
 
 bool ConnectionHandler::alive() const
 {
-#ifdef Q_OS_WIN32
+#ifdef SIMULATOR
     return true;
 #else
     return m_localDevice.isValid() && m_localDevice.hostMode() != QBluetoothLocalDevice::HostPoweredOff;
diff --git a/examples/bluetooth/heartrate-game/devicefinder.cpp b/examples/bluetooth/heartrate-game/devicefinder.cpp
index 0579ad4ac8a30dbe1c8503a9de317e68eaf99a83..71c4dcee68104637c73170f839f2f0916601c041 100644
--- a/examples/bluetooth/heartrate-game/devicefinder.cpp
+++ b/examples/bluetooth/heartrate-game/devicefinder.cpp
@@ -58,7 +58,7 @@ DeviceFinder::DeviceFinder(DeviceHandler *handler, QObject *parent):
     connect(m_deviceDiscoveryAgent, &QBluetoothDeviceDiscoveryAgent::canceled, this, &DeviceFinder::scanFinished);
 
 
-#ifdef Q_OS_WIN32
+#ifdef SIMULATOR
     m_demoTimer.setSingleShot(true);
     m_demoTimer.setInterval(2000);
     connect(&m_demoTimer, &QTimer::timeout, this, &DeviceFinder::scanFinished);
@@ -80,7 +80,7 @@ void DeviceFinder::startSearch()
 
     emit devicesChanged();
 
-#ifdef Q_OS_WIN32
+#ifdef SIMULATOR
     m_demoTimer.start();
 #else
     m_deviceDiscoveryAgent->start();
@@ -111,7 +111,7 @@ void DeviceFinder::scanError(QBluetoothDeviceDiscoveryAgent::Error error)
 
 void DeviceFinder::scanFinished()
 {
-#ifdef Q_OS_WIN32
+#ifdef SIMULATOR
     // Only for testing
     for (int i = 0; i < 5; i++)
         m_devices.append(new DeviceInfo(QBluetoothDeviceInfo()));
@@ -146,7 +146,7 @@ void DeviceFinder::connectToService(const QString &address)
 
 bool DeviceFinder::scanning() const
 {
-#ifdef Q_OS_WIN32
+#ifdef SIMULATOR
     return m_demoTimer.isActive();
 #else
     return m_deviceDiscoveryAgent->isActive();
diff --git a/examples/bluetooth/heartrate-game/devicefinder.h b/examples/bluetooth/heartrate-game/devicefinder.h
index d9ad66ad21d63c27781e8e6f0d66ef5bb4a1fbad..c82c0fe5da8818b63166382b39e66b40bd4a72be 100644
--- a/examples/bluetooth/heartrate-game/devicefinder.h
+++ b/examples/bluetooth/heartrate-game/devicefinder.h
@@ -41,6 +41,7 @@
 #ifndef DEVICEFINDER_H
 #define DEVICEFINDER_H
 
+#include "heartrate-global.h"
 #include "bluetoothbaseclass.h"
 
 #include <QTimer>
@@ -83,7 +84,7 @@ private:
     QBluetoothDeviceDiscoveryAgent *m_deviceDiscoveryAgent;
     QList<QObject*> m_devices;
 
-#ifdef Q_OS_WIN32
+#ifdef SIMULATOR
     QTimer m_demoTimer;
 #endif
 };
diff --git a/examples/bluetooth/heartrate-game/devicehandler.cpp b/examples/bluetooth/heartrate-game/devicehandler.cpp
index da643ff59ea871e8cc7420b5858b0c747366d037..d0f06d271ef17feb4df902b9c1c3b5bbdbe44bf9 100644
--- a/examples/bluetooth/heartrate-game/devicehandler.cpp
+++ b/examples/bluetooth/heartrate-game/devicehandler.cpp
@@ -38,6 +38,7 @@
 **
 ****************************************************************************/
 
+#include "heartrate-global.h"
 #include "devicehandler.h"
 #include "deviceinfo.h"
 #include <QtEndian>
@@ -52,7 +53,7 @@ DeviceHandler::DeviceHandler(QObject *parent) :
     m_currentValue(0),
     m_min(0), m_max(0), m_sum(0), m_avg(0), m_calories(0)
 {
-#ifdef Q_OS_WIN32
+#ifdef SIMULATOR
     m_demoTimer.setSingleShot(false);
     m_demoTimer.setInterval(2000);
     connect(&m_demoTimer, &QTimer::timeout, this, &DeviceHandler::updateDemoHR);
@@ -66,7 +67,7 @@ void DeviceHandler::setDevice(DeviceInfo *device)
     clearMessages();
     m_currentDevice = device;
 
-#ifdef Q_OS_WIN32
+#ifdef SIMULATOR
     setInfo(tr("Demo device connected."));
     return;
 #endif
@@ -209,7 +210,7 @@ void DeviceHandler::updateHeartRateValue(const QLowEnergyCharacteristic &c, cons
     addMeasurement(hrvalue);
 }
 
-#ifdef Q_OS_WIN32
+#ifdef SIMULATOR
 void DeviceHandler::updateDemoHR()
 {
     int randomValue = 0;
@@ -258,7 +259,7 @@ bool DeviceHandler::measuring() const
 
 bool DeviceHandler::alive() const
 {
-#ifdef Q_OS_WIN32
+#ifdef SIMULATOR
     return true;
 #endif
 
diff --git a/examples/bluetooth/heartrate-game/devicehandler.h b/examples/bluetooth/heartrate-game/devicehandler.h
index d00f040654bc9da55deecad8f0f53b6c8525019d..08831cb3a702093fdae9976f1d7e0511bfa37e25 100644
--- a/examples/bluetooth/heartrate-game/devicehandler.h
+++ b/examples/bluetooth/heartrate-game/devicehandler.h
@@ -101,7 +101,7 @@ private:
     void confirmedDescriptorWrite(const QLowEnergyDescriptor &d,
                               const QByteArray &value);
 
-#ifdef Q_OS_WIN32
+#ifdef SIMULATOR
     void updateDemoHR();
 #endif
 private:
@@ -123,7 +123,7 @@ private:
 
     QVector<int> m_measurements;
 
-#ifdef Q_OS_WIN32
+#ifdef SIMULATOR
     QTimer m_demoTimer;
 #endif
 };
diff --git a/examples/bluetooth/heartrate-game/deviceinfo.cpp b/examples/bluetooth/heartrate-game/deviceinfo.cpp
index 4d1a34985dea4cc592df55b8caf269799c551d83..cb2ca97e25a4a8dd9e1872ab072f43060687535c 100644
--- a/examples/bluetooth/heartrate-game/deviceinfo.cpp
+++ b/examples/bluetooth/heartrate-game/deviceinfo.cpp
@@ -38,6 +38,7 @@
 **
 ****************************************************************************/
 
+#include "heartrate-global.h"
 #include "deviceinfo.h"
 #include <QBluetoothAddress>
 #include <QBluetoothUuid>
@@ -54,7 +55,7 @@ QBluetoothDeviceInfo DeviceInfo::getDevice() const
 
 QString DeviceInfo::getName() const
 {
-#ifdef Q_OS_WIN32
+#ifdef SIMULATOR
     return "Demo device";
 #else
     return m_device.name();
@@ -63,7 +64,7 @@ QString DeviceInfo::getName() const
 
 QString DeviceInfo::getAddress() const
 {
-#ifdef Q_OS_WIN32
+#ifdef SIMULATOR
     return "00:11:22:33:44:55";
 #elif Q_OS_DARWIN
     // workaround for Core Bluetooth:
diff --git a/examples/bluetooth/heartrate-game/heartrate-game.pro b/examples/bluetooth/heartrate-game/heartrate-game.pro
index 5a856b9c48e0d979bcb9641ab01214274c6b9f94..fcec0bd22a2f88506c9aa6640897d3e88910c6aa 100644
--- a/examples/bluetooth/heartrate-game/heartrate-game.pro
+++ b/examples/bluetooth/heartrate-game/heartrate-game.pro
@@ -9,7 +9,8 @@ HEADERS += \
     deviceinfo.h \
     devicefinder.h \
     devicehandler.h \
-    bluetoothbaseclass.h
+    bluetoothbaseclass.h \
+    heartrate-global.h
 
 SOURCES += main.cpp \
     connectionhandler.cpp \
diff --git a/examples/bluetooth/heartrate-game/heartrate-global.h b/examples/bluetooth/heartrate-game/heartrate-global.h
new file mode 100644
index 0000000000000000000000000000000000000000..376c7990150f0710d6b7c6691f8c2a81d3285b4a
--- /dev/null
+++ b/examples/bluetooth/heartrate-game/heartrate-global.h
@@ -0,0 +1,51 @@
+/***************************************************************************
+**
+** Copyright (C) 2017 The Qt Company Ltd.
+** Contact: http://www.qt.io/licensing/
+**
+** This file is part of the examples of the QtBluetooth module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:BSD$
+** You may use this file under the terms of the BSD license as follows:
+**
+** "Redistribution and use in source and binary forms, with or without
+** modification, are permitted provided that the following conditions are
+** met:
+**   * Redistributions of source code must retain the above copyright
+**     notice, this list of conditions and the following disclaimer.
+**   * Redistributions in binary form must reproduce the above copyright
+**     notice, this list of conditions and the following disclaimer in
+**     the documentation and/or other materials provided with the
+**     distribution.
+**   * Neither the name of The Qt Company Ltd nor the names of its
+**     contributors may be used to endorse or promote products derived
+**     from this software without specific prior written permission.
+**
+**
+** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef HEARTRATEGLOBAL_H
+#define HEARTRATEGLOBAL_H
+
+//#define USE_SIMULATOR
+
+#if defined(Q_OS_WIN32) || defined(USE_SIMULATOR)
+#define SIMULATOR
+#endif
+
+
+#endif // HEARTRATEGLOBAL_H