farmbot_os/docs/target_development/target_faq.md

42 lines
1.5 KiB
Markdown
Raw Permalink Normal View History

2017-02-27 00:33:59 -07:00
# Frequently Asked Questions
2018-01-18 12:59:32 -07:00
2019-12-18 13:01:55 -07:00
## What ports oputbound does Farmbot OS use
2018-05-17 15:47:18 -06:00
* AMQP: 5672
2018-01-18 12:59:32 -07:00
* HTTP(S): 80 + 443 (this is configurable)
* NTP: UDP 123
2019-12-18 13:01:55 -07:00
## My bot doesn't boot on a fresh SD card
2016-10-25 09:11:11 -06:00
This could be one of a few things. These things are in order of probability.
2016-12-27 14:02:42 -07:00
2017-09-26 23:23:09 -06:00
* Your farmbot doesn't have enough power. You NEED a good power supply at
2019-12-18 13:01:55 -07:00
least 5 volts and 2.5 Amps for farmbot to boot reliably.
2016-10-25 09:11:11 -06:00
* Is the power LED flashing? If yes you need more amps.
* Is the Green LED flashing? If no you need more amps.
* Your Arduino wasn't detected.
* You have more than one UART device.
* You have a bad flash.
* If you used `dd` to write the image, try setting `BS` to a lower value.
* if you used win32 disk imager try safely removing the SD card
* You have a bad SD Card.
2017-09-26 23:23:09 -06:00
* You aren't using a Raspberry Pi 3.
2017-04-03 09:03:19 -06:00
2019-12-18 13:01:55 -07:00
## Why can't I update my Arduino Firmware
2017-09-26 23:23:09 -06:00
As of version 3.8.0 we decided to bundle the arduino firmware into farmbot os.
There was a couple reasons for this.
2019-12-18 13:01:55 -07:00
2017-04-03 09:03:19 -06:00
* There is no more version conflicts between the firmware and operating system.
2017-09-26 23:23:09 -06:00
* Applying updates during farmbot os runtime can be dangerous and was leaving
2019-12-18 13:01:55 -07:00
peoples bot's unusable because of broken firmwares.
2016-12-27 14:02:42 -07:00
2018-05-16 17:00:32 -06:00
## Can the shell run on HDMI
2019-12-18 13:01:55 -07:00
2017-09-26 23:23:09 -06:00
No. Farmbot is designed to operate without the use of a monitor.
2016-10-25 09:11:11 -06:00
2019-12-18 13:01:55 -07:00
## Why aren't [X] or [Y] packages included
2017-09-26 23:23:09 -06:00
See the above answer. [Raise an issue](https://github.com/FarmBot/farmbot_os/issues/new)
to request a package. Future versions of FarmBotOS may provide a plugin system.
2019-12-18 13:01:55 -07:00
It is not implemented yet.