Packages

Simulates (NOT EMULATES) Farmbot's arduino firmware and hardware. The firmware is pretty stable and used in FarmbotOS's testing environment. The visual hardware simulator is very much a WIP.

Current section

Files

Jump to
farmbot_simulator lib firmware code_handler f83.ex
Raw

lib/firmware/code_handler/f83.ex

defmodule Firmware.CodeHandler.F83 do
@moduledoc false
@behaviour Firmware.CodeHandler
@version_info "FIRMWARE SIMULATOR #{Mix.Project.config[:version]}"
def run(args), do: "R83 #{@version_info} #{args}"
end