This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" reads and parses sensor data from ypyt cloud for given device token """ | |
# see https://github.com/xoseperez/espurna/issues/1644 for more context | |
import json | |
import os | |
import sys | |
import paho.mqtt.client as mqtt | |
import time as t |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** NimBLE_Server Demo: | |
* | |
This is working to broadcast Power and Cadence under the Cycling Power Service Profile | |
Data tested against Edge and Phone | |
* | |
*/ | |
#include <Arduino.h> | |
#include <NimBLEDevice.h> | |
short powerInstantaneous = 0; |