Posts by favoriot

[Tutorial] : Smart Conveyor System using FAVORIOT

April 6th, 2025 Posted by BLOG 0 thoughts on “[Tutorial] : Smart Conveyor System using FAVORIOT”

Smart Conveyor System with IoT Monitoring

This project shows how to build a smart conveyor system that:

  • Sorts products using IR sensors and servo motors
  • Monitors speed and status in real-time
  • Sends and receives data via the FAVORIOT IoT platform

1. Project Goal

✅ Automatically detect products, sort them, and adjust conveyor speed
Send data to FAVORIOT Cloud for real-time monitoring
Remotely control speed using the FAVORIOT Dashboard


2. Main Components

ComponentPurpose
Arduino/ESP8266Microcontroller
IR SensorDetect object on conveyor
Servo MotorProduct sorting & speed control
ESP8266 WiFiSend data to FAVORIOT
FAVORIOT PlatformIoT Dashboard & Data Analytics

3. System Design

🏗️ Hardware:

  • Conveyor with IR sensor and servo motor
  • Controlled by Arduino + ESP8266

☁️ IoT Setup:

  • Data sent to FAVORIOT cloud via WiFi
  • IoT Dashboard displays:
    • Speed
    • Status (Running/Stopped)
    • Product Detected

4. Wiring Diagram

  • IR Sensor → Arduino digital pin
  • Servo Motor → PWM pin
  • ESP8266 → TX/RX (for WiFi communication)

5. Sending Data to FAVORIOT

Step 1: Sign up at FAVORIOT Platform

Create a new device called Smart_Conveyor_001 to get your API key.

Step 2: Arduino Code (ESP8266)

#include <ESP8266WiFi.h>
#include <ESP8266HTTPClient.h>

const char* ssid = "Your_WiFi_Name";
const char* password = "Your_WiFi_Password";
const char* server = "http://apiv2.favoriot.com/v2/streams";
const char* api_key = "YOUR_FAVORIOT_API_KEY";

void setup() {
  Serial.begin(115200);
  WiFi.begin(ssid, password);
  while (WiFi.status() != WL_CONNECTED) {
    delay(1000);
    Serial.println("Connecting to WiFi...");
  }
}

void loop() {
  if (WiFi.status() == WL_CONNECTED) {
    HTTPClient http;
    http.begin(server);
    http.addHeader("Content-Type", "application/json");
    http.addHeader("Apikey", api_key);

    String jsonData = "{\"device_developer_id\":\"Smart_Conveyor_001\",\"data\":{\"speed\":100,\"status\":\"Running\",\"product_detected\":1}}";

    int httpResponseCode = http.POST(jsonData);
    Serial.println(httpResponseCode);
    http.end();
  }
  delay(5000); // Send every 5 seconds
}

6. IoT Dashboard on FAVORIOT

Use the built-in dashboard or tools like Node-RED to:

  • View real-time speed and status
  • Count products
  • Display alerts when needed

7. Receiving Control Commands (Remote Control)

Use FAVORIOT’s API to send speed commands to your device.

Example JSON Payload:

{
  "device_developer_id": "Smart_Conveyor_001",
  "data": {
    "speed": 50
  }
}

Arduino Code to Read Command:

String speed_value = received_data["data"]["speed"];
int motorSpeed = speed_value.toInt();
analogWrite(motorPin, motorSpeed);

8. Testing & Simulation Checklist

IR Sensor Test – Detect object presence
Speed Test – Change speed via dashboard
Data Transmission – View updates on dashboard
Sorting Automation – Simulate sorting flow


9. Summary & What’s Next

✅ Project Highlights:

  • Remote monitoring & control
  • Real-time speed and object status updates
  • Simple integration with FAVORIOT

📈 Future Enhancements:

  • Add AI Camera for advanced object detection
  • Use Machine Learning to adjust speed automatically
  • Switch to MQTT for faster data transmission

This project proves that IoT + automation can enhance productivity and reduce human error in smart manufacturing. With the FAVORIOT Platform, developers can scale up easily and integrate analytics, alerts, and AI features.

Favoriot and Aswant Solution Join Forces to Revolutionize AI, IoT, and Security

March 5th, 2025 Posted by BLOG, Kaspersky, NEWS, PARTNER 0 thoughts on “Favoriot and Aswant Solution Join Forces to Revolutionize AI, IoT, and Security”

Puchong, Malaysia – March 5, 2025 – A game-changing partnership has been forged today as Favoriot Sdn Bhd and Aswant Solution Sdn Bhd officially signed a Memorandum of Understanding (MOU) at Favoriot’s office in Puchong, Malaysia. This strategic alliance is set to supercharge innovation in Artificial Intelligence (AI), the Internet of Things (IoT), and cybersecurity, empowering businesses with cutting-edge technology solutions.

The agreement was formalized by Dr. Mazlan Abbas, CEO of Favoriot Sdn Bhd, and Nor Asrul Mohd Noor, Managing Director of Aswant Solution Sdn Bhd, with Zura Huzali, Business Development Director of Favoriot, and Fazlirizam Mohammed Nor, Director of Aswant Solution, witnessing the milestone moment.

Powering the Future with AI-Driven IoT and Security Solutions

This collaboration is more than just a handshake—it’s a commitment to shaping the future of AI and IoT-driven security solutions. By combining Favoriot’s expertise in IoT platform development with Aswant Solutions’ prowess in IT security and distribution, both companies are ready to tackle emerging challenges in digital transformation.

Dr. Mazlan Abbas expressed his excitement about this partnership:
“We are on the brink of a new era in IoT and AI, and this collaboration marks a crucial step in bringing secure, intelligent solutions to businesses across industries. Aswant Solutions’ strong foothold in IT security and distribution perfectly complements our IoT capabilities, making this a powerful synergy for the future.”

Nor Asrul Mohd Noor echoed the enthusiasm, stating:
“At Aswant Solutions, we believe in innovation with security at its core. Partnering with Favoriot allows us to enhance the reach of AI-powered automation and IoT efficiency while ensuring robust protection for businesses. Together, we are driving the next wave of digital transformation.”

Unlocking New Possibilities in Smart and Secure Technologies

Favoriot is widely recognized for its scalable IoT platform, which enables businesses to integrate real-time data analytics and smart applications seamlessly. As a Kaspersky Platinum Partner in Malaysia, Aswant Solutions is a leader in cybersecurity, system integration, and IT distribution, providing businesses with the tools to navigate the evolving digital landscape securely.

This partnership is a leap forward in fostering technological advancements, allowing businesses in Malaysia and beyond to embrace AI, IoT, and cybersecurity with confidence.

About Favoriot

Favoriot is a premier IoT platform provider that simplifies the deployment of IoT applications, offering real-time data insights, cloud-based solutions, and seamless device integration.

About Aswant Solutions

Aswant Solutions is a leading IT security and distribution firm in Malaysia, specializing in advanced cybersecurity, networking, and system integration to help businesses secure their digital transformation journey.

For further details, visit:
🔗 Favoriot: www.favoriot.com
🔗 Aswant Solutions: www.aswant-solution.com

Favoriot Edge Gateway Service

March 4th, 2025 Posted by BLOG, HOW-TO, Internet of Things, IOT PLATFORM 0 thoughts on “Favoriot Edge Gateway Service”

Favoriot Edge Gateway is a service that connects IoT gateways directly to the Favoriot Platform. It bridges the “edge” (local devices) and the Favoriot Platform, enabling data from local devices to be processed, managed, and stored. Additionally, it allows for the selection of specific parameters in the payload to be stored, providing greater control over transmitted data.

Key References

Copyright © 2025 All rights reserved