6

Has an AMQP message sender been implemented on AVR / Arduino?

  • Is this possible, given the limited space available on the ATmega328
  • I am not looking for a full implementation. Just a bare-bones "send a message". Receiving messages would be nice too, but is not essential.
A.H.
  • 63,967
  • 15
  • 92
  • 126
Dirk
  • 3,073
  • 4
  • 31
  • 36
  • Related discussion on RabbitMQ mailing list: [Simplest possible embedded message producer](http://lists.rabbitmq.com/pipermail/rabbitmq-discuss/2012-March/018950.html) – A.H. Apr 12 '12 at 18:42

1 Answers1

5

Do you need exactly ACMQ or any MQ protocol for message exchange? There's an Arduino client for MQTT — a protocol designed for embedded devices.

Andrew
  • 1,203
  • 8
  • 12
  • 2
    RabbitMQ now supports MQTT via an adapter, too. So try using MQTT on the AVR/Arduino and publishing to RabbitMQ, for example. – Andy Piper Sep 14 '12 at 09:38