Skip to content
Brandon Carpenter edited this page Sep 22, 2015 · 7 revisions

Full code of agent detailed in AgentDevelopment:

import sys

from volttron.platform.vip.agent import Agent, PubSub
from volttron.platform.agent import util

class TestAgent(Agent):

    @PubSub.subscribe('pubsub', 'heartbeat/listeneragent')
    def on_heartbeat_topic(self, peer, sender, bus, topic, headers, message):
           print "TestAgent got\nTopic: {topic}, {headers}, Message:   {message}".format(topic=topic,
                                     headers=headers, message=message)

def main(argv=sys.argv):
    '''Main method called by the eggsecutable.'''
    utils.vip_main(TestAgent,
                   description='Test Agent',
                   argv=argv)


if __name__ == '__main__':
    # Entry point for script
    try:
        sys.exit(main())
    except KeyboardInterrupt:
        pass

Contents of setup.py for TestAgent:

packages = find_packages('.')
package = packages[0]

setup(
    name = package + 'agent',
    version = "0.1",
    install_requires = ['volttron'],
    packages = packages,
    entry_points = {
        'setuptools.installation': [
            'eggsecutable = ' + package + '.agent:main',
        ]
    }
)

Contents of testagent.config

{
    "agentid": "Test1",
    "message": "hello"    
}

Wiki Home

Quick Start Guide

Getting VOLTTRON

VOLTTRON Community

VOLTTRON Core Services

Historians

Drivers

Instance Management

Applications
  • ...
Examples
Developers
HOWTOS

VOLTTRON Versions and Features

Transactional Network Platform Overview

Platform Services

Volttron Restricted

Information Exchange Standards

FAQ

Project Home

Clone this wiki locally