countryNameRead()
Описание
Функция считывает название вашей страны из памяти EEPROM. Название страны можно задать функцией userNameWrite().
Синтаксис
Robot.countryNameRead(container)
Параметры
container: массив символов из 8 элементов.
Возвращаемые значения
нет
Пример
#include <ArduinoRobot.h> void setup(){ Serial.begin(9600); Robot.begin(); } void loop(){ Robot.userNameWrite("Aaa"); Robot.robotNameWrite("The Robot"); Robot.cityNameWrite("Malmo"); Robot.countryNameWrite("Sweden"); char container[8]; Robot.userNameRead(container) Serial.println(container); Robot.robotNameRead(container) Serial.println(container); Robot.cityNameRead(container) Serial.println(container); Robot.countryNameRead(container) Serial.println(container); }