Posts tagged "FAVORIOT"

Dr. Mazlan and FAVORIOT Joins the Global Vision Board (GBV)

May 13th, 2017 Posted by BLOG 0 thoughts on “Dr. Mazlan and FAVORIOT Joins the Global Vision Board (GBV)”

May 12, 2017 – Dr. Mazlan was invited to join the 100 Global Visionaries to Global Vision Board today. FAVORIOT and Smart Cities Innovation Lab (Smart iLab) also signed an MOU for a long-term partnership to collaborate in SMART CITY projects.

 

Dr. Mazlan Abbas_Formal Invitation.jpg

Exclusive Invitation to Global Vision Board (GBV)

 

screenshot_01.jpgGlobal Vision Board (GVB) is an international group of intellectual stakeholders comprising members from cities, academia, industry, SMEs and other organizations in the world.

The role of the Visionaries is to provide on-going expertise on developing the market for smart city products & services, and how these can be used to enable cities to meet the challenges they face. GVB members can be considered as a unique talent pool for the organization and for any potential projects to help new market penetrations, to encourage partnerships at all levels and to promote professional recognition at a global scale.

How to Become FAVORIOT Beta Developer

May 3rd, 2017 Posted by IOT PLATFORM 0 thoughts on “How to Become FAVORIOT Beta Developer”

Be the first to develop your IoT application using FAVORIOT – send an email request (info@favoriot.com) with the following details for a FREE Account as a Beta Developer:

Name:
Preferred Username:
Email:

Country:

Magazine Favoriot-12.png

If you are having trouble with connecting your device to our platform please contact us at support@favoriot.com.

Full documentation and technical tutorial – HERE.

NOTE: As a Beta Developer, you are limited to 5 connected devices and average of 500 APIs calls per device per day.  Data retention will be 1 year. This is a limited time offer.

Create Your First IoT Application by Connecting Raspberry Pi to FAVORIOT Platform

April 30th, 2017 Posted by IOT PLATFORM, TIPS 0 thoughts on “Create Your First IoT Application by Connecting Raspberry Pi to FAVORIOT Platform”

Magazine Favoriot-9.pngThis section provides tutorials on connecting Raspberry Pi to FAVORIOT platform.

code for creating a data stream

import requests
import json

url = "https://api.favoriot.com/v1/streams"
payload = json.dumps({
  "device_developer_id": "deviceDefault@favoriot.iot",
  "data": {"temp":"14"}
})
headers = {
    "apikey": "YOUR API KEY HERE",
    "content-type": "application/json",
    "cache-control": "no-cache",
    }

response = requests.request("POST", url, headers=headers, data=payload)
parsed = json.loads(response.text)
print json.dumps(parsed, indent=4, sort_keys=True)

code for getting all data stream

import requests
import json

url = "https://api.favoriot.com/v1/streams"
headers = {
    "apikey": "YOUR API KEY HERE",
    "content-type": "application/json",
    "cache-control": "no-cache"
    }
response = requests.request("GET", url, headers=headers)
parsed = json.loads(response.text)
print json.dumps(parsed, indent=4, sort_keys=True)

Raspbian comes preloaded with Python, the official programming language of the Raspberry Pi and IDLE 3, a Python Integrated Development Environment. We’re going to show you now how to get started with Raspberry Pi using Python to connect to our FAVORIOT platform.

You can use Raspberry Pi as IoT device by connecting sensors to it, or it can be used as IoT Gateway.

Replace the indevice_developer_id in the payload with your device name. Follow the syntax as given inside the payload.

import request is used to enable HTTPrequest from python. You install this library by running the command pip install request in the terminal.

import json is used to format the JSON response received from FAVORIOT and prepare the JSON data to be sent to the FAVORIOT platform.

If you are interested in becoming a Beta Developer, please send email to info@favoriot.com

If you are having trouble with connecting your device to our platform please contact us at support@favoriot.com.

Full documentation and technical tutorial – HERE.

Copyright © 2025 All rights reserved