mirror of
https://github.com/k3ng/k3ng_rotator_controller.git
synced 2025-02-02 00:57:59 +00:00
2.0.2015111502
LANGUAGE_DUTCH courtesy of David, ON4BDS
This commit is contained in:
parent
ce1b89de7f
commit
b8166489b6
@ -419,10 +419,13 @@
|
||||
|
||||
2.0.2015111501
|
||||
Fixed issues with compilation under Arduino 1.6.6 (gave up on various include files... I'll do things the right way in the rewrite)
|
||||
|
||||
2.0.2015111502
|
||||
LANGUAGE_DUTCH courtesy of David, ON4BDS
|
||||
|
||||
*/
|
||||
|
||||
#define CODE_VERSION "2.0.2015111501"
|
||||
#define CODE_VERSION "2.0.2015111502"
|
||||
|
||||
#include <avr/pgmspace.h>
|
||||
#include <EEPROM.h>
|
||||
|
@ -27,6 +27,7 @@
|
||||
//#define LANGUAGE_PORTUGUESE_BRASIL
|
||||
//#define LANGUAGE_GERMAN
|
||||
//#define LANGUAGE_FRENCH
|
||||
//#define LANGUAGE_DUTCH
|
||||
|
||||
/* master and remote slave unit functionality */
|
||||
//#define FEATURE_REMOTE_UNIT_SLAVE // uncomment this to make this unit a remote unit controlled by a host unit
|
||||
|
@ -5,9 +5,14 @@
|
||||
#define FEATURE_YAESU_EMULATION // uncomment this for Yaesu GS-232 emulation on control port
|
||||
//#define FEATURE_EASYCOM_EMULATION // Easycom protocol emulation on control port (undefine FEATURE_YAESU_EMULATION above)
|
||||
|
||||
#define LANGUAGE_ENGLISH
|
||||
#define LANGUAGE_ENGLISH // all languages customized in rotator_language.h
|
||||
//#define LANGUAGE_SPANISH
|
||||
//#define LANGUAGE_CZECH
|
||||
//#define LANGUAGE_ITALIAN
|
||||
//#define LANGUAGE_PORTUGUESE_BRASIL
|
||||
//#define LANGUAGE_GERMAN
|
||||
//#define LANGUAGE_FRENCH
|
||||
//#define LANGUAGE_DUTCH
|
||||
|
||||
#define FEATURE_AZ_POSITION_POTENTIOMETER //this is used for both a voltage from a rotator control or a homebrew rotator with a potentiometer
|
||||
|
||||
|
@ -20,11 +20,14 @@
|
||||
//#define FEATURE_STEPPER_MOTOR // requires Mega or an AVR with Timer 5 support
|
||||
//#define FEATURE_AUTOCORRECT
|
||||
|
||||
#define LANGUAGE_ENGLISH
|
||||
#define LANGUAGE_ENGLISH // all languages customized in rotator_language.h
|
||||
//#define LANGUAGE_SPANISH
|
||||
//#define LANGUAGE_CZECH
|
||||
//#define LANGUAGE_ITALIAN
|
||||
//#define LANGUAGE_PORTUGUESE_BRASIL
|
||||
//#define LANGUAGE_GERMAN
|
||||
//#define LANGUAGE_FRENCH
|
||||
//#define LANGUAGE_DUTCH
|
||||
|
||||
/* master and remote slave unit functionality */
|
||||
//#define FEATURE_REMOTE_UNIT_SLAVE // uncomment this to make this unit a remote unit controlled by a host unit
|
||||
|
@ -26,6 +26,7 @@
|
||||
//#define LANGUAGE_ITALIAN
|
||||
//#define LANGUAGE_PORTUGUESE_BRASIL
|
||||
//#define LANGUAGE_GERMAN
|
||||
//#define LANGUAGE_DUTCH
|
||||
|
||||
/* master and remote slave unit functionality */
|
||||
//#define FEATURE_REMOTE_UNIT_SLAVE // uncomment this to make this unit a remote unit controlled by a host unit
|
||||
|
@ -20,10 +20,14 @@
|
||||
#define FEATURE_STEPPER_MOTOR // requires this library: https://code.google.com/p/rogue-code/wiki/ToneLibraryDocumentation
|
||||
//#define FEATURE_AUTOCORRECT
|
||||
|
||||
#define LANGUAGE_ENGLISH
|
||||
#define LANGUAGE_ENGLISH // all languages customized in rotator_language.h
|
||||
//#define LANGUAGE_SPANISH
|
||||
//#define LANGUAGE_CZECH
|
||||
//#define LANGUAGE_ITALIAN
|
||||
//#define LANGUAGE_PORTUGUESE_BRASIL
|
||||
//#define LANGUAGE_GERMAN
|
||||
//#define LANGUAGE_FRENCH
|
||||
//#define LANGUAGE_DUTCH
|
||||
|
||||
/* master and remote slave unit functionality */
|
||||
//#define FEATURE_REMOTE_UNIT_SLAVE // uncomment this to make this unit a remote unit controlled by a host unit
|
||||
|
@ -306,3 +306,48 @@
|
||||
#define ENE_STRING "ENE"
|
||||
#define NNE_STRING "NNE"
|
||||
#endif //LANGUAGE_FRENCH
|
||||
|
||||
#ifdef LANGUAGE_DUTCH // Dutch language support courtesy of David, ON4BDS
|
||||
#define MOON_STRING "maan "
|
||||
#define SUN_STRING "zon "
|
||||
#define AZ_TARGET_STRING "Az Doel "
|
||||
#define EL_TARGET_STRING "El Doel "
|
||||
#define TARGET_STRING "Doel "
|
||||
#define PARKING_STRING "Parkeren"
|
||||
#define PARKED_STRING "Geparkeerd"
|
||||
/*
|
||||
#define ROTATING_CW_STRING "Roteren CW" // depricated in 2015090402
|
||||
#define ROTATING_CCW_STRING "Roteren CCW"
|
||||
#define ROTATING_TO_STRING "Roteren naar "
|
||||
#define ELEVATING_TO_STRING "Eleveren naar "
|
||||
#define ELEVATING_UP_STRING "Eleveren Omhoog""
|
||||
#define ELEVATING_DOWN_STRING "Eleveren Omlaag"
|
||||
#define ROTATING_STRING "Roteren "
|
||||
*/
|
||||
#define CW_STRING "CW"
|
||||
#define CCW_STRING "CCW"
|
||||
#define UP_STRING "OP"
|
||||
#define DOWN_STRING "Neer"
|
||||
#define AZIMUTH_STRING "Azimuth "
|
||||
#define AZ_STRING "Az"
|
||||
#define AZ_SPACE_STRING "Az "
|
||||
#define SPACE_EL_STRING " El"
|
||||
#define SPACE_EL_SPACE_STRING " El "
|
||||
#define GPS_STRING "GPS"
|
||||
#define N_STRING "N"
|
||||
#define W_STRING "W"
|
||||
#define S_STRING "Z"
|
||||
#define E_STRING "O"
|
||||
#define NW_STRING "NW"
|
||||
#define SW_STRING "ZW"
|
||||
#define SE_STRING "ZO"
|
||||
#define NE_STRING "NO"
|
||||
#define NNW_STRING "NNW"
|
||||
#define WNW_STRING "WNW"
|
||||
#define WSW_STRING "WZW"
|
||||
#define SSW_STRING "ZZW"
|
||||
#define SSE_STRING "ZZO"
|
||||
#define ESE_STRING "OZO"
|
||||
#define ENE_STRING "ONO"
|
||||
#define NNE_STRING "NNO"
|
||||
#endif //LANGUAGE_DUTCH
|
Loading…
x
Reference in New Issue
Block a user