- Disto: Debian
- Version: stable
- Size: at least 4000
- Username and password: please set
- Autorun: enable
- Init system: sysv
- Mount folders: one can enable android folder mount for config and gcode
- SSH: enable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This file is an example config file for cartesian style printers. | |
| # One may copy and edit this file to configure a new cartesian | |
| # printer. | |
| # DO NOT COPY THIS FILE WITHOUT CAREFULLY READING AND UPDATING IT | |
| # FIRST. Incorrectly configured parameters may cause damage. | |
| # See docs/Config_Reference.md for a description of parameters. | |
| ##################################################################### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <SoftwareSerial.h> | |
| SoftwareSerial SIM800(8, 9); // 8 - RX Arduino (TX SIM800L), 9 - TX Arduino (RX SIM800L) | |
| void setup() { | |
| Serial.begin(9600); // Скорость обмена данными с компьютером | |
| Serial.println("Start!"); | |
| SIM800.begin(9600); // Скорость обмена данными с модемом | |
| SIM800.println("AT"); | |
| } | |
| void loop() { |