Page 40 of 52
20
100
(GMT+01.00) Berlin, Rome, Amsterdam, Bern, Stockholm, Vienna
21
100
(GMT+01.00) Paris, Madrid, Brussels, Copenhagen, W Central Africa
22
100
(GMT+01.00) Prague, Belgrade, Bratislava, Budapest, Ljubljana
23
200
(GMT+02.00) Athens, Helsinki, Istanbul, Minsk, Riga, Tallinn
24 200
(GMT+02:00)
Cairo
25
200
(GMT+02.00) Eastern Europe, Bucharest
26
200
(GMT+02:00) Harare, Pretoria
27 200
(GMT+02.00)
Israel,
Jerusalem
28
300
(GMT+03:00) Baghdad, Kuwait, Nairobi, Riyadh
29
300
(GMT+03.00) Moscow, St. Petersburg, Volgograd
30 330
(GMT+03:30)
Tehran
31
400
(GMT+04:00) Abu Dhabi, Muscat, Baku, Tblisi, Yerevan, Kazan
32 430
(GMT+04:30)
Kabul
33
500
(GMT+05:00) Islamabad, Karachi, Ekaterinburg, Tashkent
34
530
(GMT+05:30) Bombay, Calcutta, Madras, New Delhi, Chennai
35
600
(GMT+06:00) Almaty, Dhaka, Colombo, Novosibirsk, Astana
36
700
(GMT+07:00) Bangkok, Jakarta, Hanoi, Krasnoyarsk
37
800
(GMT+08:00) Beijing, Chongqing, Urumqi, Irkutsk, Ulaan Bataar
38
800
(GMT+08:00) Hong Kong, Perth, Singapore, Taipei, Kuala Lumpur
39
900
(GMT+09:00) Tokyo, Osaka, Sapporo, Seoul, Yakutsk
40 930
(GMT+09:30)
Adelaide
41 930
(GMT+09:30)
Darwin
42
1000
(GMT+10:00) Brisbane, Melbourne, Sydney, Canberra
43
1000
(GMT+10.00) Hobart, Guam, Port Moresby, Vladivostok
44
1100
(GMT+11:00) Magadan, Solomon Is, New Caledonia
45
1200
(GMT+12:00) Fiji, Kamchatka, Marshall Is.
46
1200
(GMT+12:00) Wellington, Auckland
3.
Setting the Rain Collector type
The rain collector type is stored in the SETUP_BITS EEPROM data byte.
To read what the current rain collector type is:
1.
Use "
EEBRD 2B 01
" to read the current setup bits into the variable
setup_bits
.
2.
Calculate:
rain_type = setup_bits & 0x30
3.
rain_type
will have one of the following values: 0x00 = 0.01 in, 0x10 = 0.2 mm, or 0x20
= 0.1 mm
To set a new rain collector type:
1.
Use "
EEBRD 2B 01
" to read the current setup bits into the variable
setup_bits
.
2.
Mask the rain collector bits to zero with
setup_bits = setup_bits & 0xCF
3.
Set
rain_type
to one of the rain collector values given above.
4.
Calculate the new
setup_bits = setup_bits | rain_type
5.
Use "
EEBWR 2B 01
" to set the new rain collector type
6.
Use "
NEWSETUP
" to have the Vantage use the new setting.