Skip to content

Arduino-compatible MCU code for sensor and telemetry nodes.

License

GPL-3.0, Unknown licenses found

Licenses found

GPL-3.0
LICENSE.txt
Unknown
LICENSE.rst
Notifications You must be signed in to change notification settings

Gulaschcowboy/arduino

 
 

Repository files navigation

README


Tip

You might want to continue reading on our documentation space, all inline links will be working there.

This is the documentation for the `Hiveeyes Arduino repository`_ of the `Hiveeyes project`_, a beehive monitoring system. Enjoy reading!

All Arduino Core based firmware source code is living here. We support different hardware, so there are different flavors of the firmware, reflected by the directory naming convention <purpose>-<transport>-<protocol>. There are firmwares for ATmega328_ and ESP8266_ MCUs.

  • purpose role name, either node or gateway
  • transport name of the physical transport mechanism, e.g. rfm69, gprs or wifi.
  • protocol name of the transmission protocol, e.g. beradio, mqtt, http or any.

Most programs use `Arduino-Makefile`_ for building while there are still some based on Ino_.

Source code

Get source code with all dependency libraries and tools:

git clone --recursive https://github.com/hiveeyes/arduino

Toolchain

Arduino IDE

If you want to use the Arduino IDE, you have to install all necessary libraries manually. The sources of the libraries can be found in the header of each sketch (.ino). In this case, copy the desired sketch into your Arduino IDE and pick the appropriate libraries from the libraries/ folder.

.. seealso:: https://www.arduino.cc/en/Guide/Libraries

Debian packages

apt-get install arduino-core

Archlinux packages

  • aur/arduino 1:1.6.8
  • community/avr-libc

For operative tasks like compiling, `Arduino-Makefile`_ is in the loop.

Compile

cd node-gprs-any
make --file Makefile-Linux.mk

After a successful build, find the firmware at bin/node-gprs-any/pro328/node-gprs-any.hex.

Upload to MCU

To build a firmware hex file, upload it to the MCU and finally start a serial port monitor, do:

cd generic

# Prepare appropriate Makefile (use Makefile-OSX.mk on OSX)
ln -s Makefile-Linux.mk Makefile

# Compile and upload to chip
make upload

# Run serial port monitor
make monitor

About

Arduino-compatible MCU code for sensor and telemetry nodes.

Topics

Resources

License

GPL-3.0, Unknown licenses found

Licenses found

GPL-3.0
LICENSE.txt
Unknown
LICENSE.rst

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Other 49.2%
  • Makefile 23.1%
  • C++ 22.9%
  • C 4.2%
  • Shell 0.6%