Arduino four universes DMX 512 libraryPublished on 3 June, 2012 by Ton การแปล - Arduino four universes DMX 512 libraryPublished on 3 June, 2012 by Ton อังกฤษ วิธีการพูด

Arduino four universes DMX 512 libr

Arduino four universes DMX 512 library
Published on 3 June, 2012 by Toni Merino in Arduino projects
After searching the web for Arduino DMX libraries, and test, we find no library allowing the use of multiple DMX universes and that did not use the timers of the arduino, so finally decided to create it.

*** UPDATED 07/07/2012 ***

Download current version: Arduino four universes dmx library version 0.3


The wiring diagram you can find it at:

Schematic Arduino shield four DMX 512 universes.

Version 0.3 CHANGES
- Not needed anymore to disable and enable interrupts during configuration.
- Not needed anymore to modify the Arduino IDE file HarwareSerial.cpp.
- Experimental support for non-standard DMX modes, faster and with more channels per universe:

DMX512 (250 kbaud – 2 to 512 channels) Standard USITT DMX-512 1990
DMX1024 (500 kbaud – 2 to 1024 channels) Completely non standard – TESTED ok
DMX2048 (1000 kbaud – 2 to 2048 channels) called by Manufacturers DMX1000K ?
- Removed leds tx – rx for speedup, if required shall be implemented in the program
- Interrupts on frame transmitted and frame received by each universe, user callback functions.

Known issues:
When we compile get the error: ‘ArduinoDmxN’ was not Declared In This scope:
Check if you have configured the correct type of board in the Arduino IDE, menu tools > board
(with Arduino nano can only use one USART = ArduinoDmx0 = USART0)
Errors while programing Arduino:
Will be necessary to remove the DMX shield, and put it back once programmed.

Flicker when controlling LEDs:
If we are dealing with LED lights, flicker may appear due to a refresh rate too low, we use fewer channels per universe (eg 200 instead of 512, to increase the frequency) and / or use less universes. This is a well known problem that affects all consoles and controllers that send all 512 channels, even when the maximum DMX refresh rate (around 44 Hz) is used.

Note about the refresh time:
The Arduino Mega and Arduino Nano use a microcontroller Atmel AVR 8-bit at 16 Mhz, which imposes a limitation of resources.
For example, 4 buffers in DMX1000K mode at 2048 channels each, will consume ALL the memory on an Arduino Mega 2560, so it must be clear what we are doing.
We should note that in practice we will probably not use all universes with all channels if we keep up the refresh rate of the DMX inputs and outputs.

Instructions for library setup – version 0.3:
Copy deskontrol library folder “Dmx” to arduino-XX.XX/libraries/

Instructions for library use:
There are four objects already created called “ArduinoDmx0″, “ArduinoDmx1″, “ArduinoDmx2″, “ArduinoDmx3″, each of these objects using a USART of the Arduino Mega, with Arduino nano can only use “ArduinoDmx0″ because there is only one USART.

When compiling your programs, in order to economy Arduino resources, should comment in the “lib_dmx.h” lines with “# define USE_UARTN” of USARTs not going to use (only Arduino Mega).

The library usage is very easy, the functions that you have to use are:

ArduinoDmxN.set_control_pin (PIN_NUMBER); // if not used -1

A call to this function we assign the pin number to be used to control the MAX485 driver, if it works as a universe of input or output. (Arduino pin that connects to pins 2 and 3 of the MAX485), can be any Arduino digital output pin.

ArduinoDmxN.set_rx_address (DMX_RX_ADDRESS);

Calling this function assign the DMX INPUT start address for this universe, can be any value between 1 and 510 (2046)*.

ArduinoDmxN.set_tx_address (DMX_TX_ADDRESS);

Calling this function assign the DMX OUT start address for this universe, can be any value between 1 and 510 (2046)*.

ArduinoDmxN.set_rx_channels (NUMBER_OF_CHANNELS);

A call to this function we assign the number of channels of DMX INPUT for this universe, can be any value between 2 and 512 (2048)*.

ArduinoDmxN.set_tx_channels (NUMBER_OF_CHANNELS);

A call to this function we assign the number of DMX OUT channels for this universe, can be any value between 2 and 512 (2048)*.

If you want to use sincronous mode:

ArduinoDmxN.attachTXInterrupt (my_TX_ISR_name);

A call to this function we assign the name of the user callback function that is activated each time that finish sending a DMX frame in a DMX universe. (avoid loss of time in the main program loop)

ArduinoDmxN.attachRXInterrupt (my_RX_ISR_name);

A call to this function we assign the name of the user callback function that is activated each time that finish receiving a DMX frame in a DMX universe. (avoid loss of time in the main program loop)

To begin transmitting or receiving a DMX universe (currently not possible simultaneously in the same universe), use one of the following functions:

ArduinoDmxN.init_rx (DMX_MODE); // *** new parameter DMX_MODE ***

A call to this function (once called the above functions) starts this universe to DMX RECEIVE.

ArduinoDmxN.init_tx (DMX_MODE); // *** new parameter DMX_MODE ***

A call to this function (once called the above functions) starts this universe to DMX TRANSMIT.

To write DMX output values: ArduinoDmxN.TxBuffer [CHANNEL - 1] = Data;
To read DMX input values: Data = ArduinoDmxN.RxBuffer [CHANNEL - 1]; // channel is 0 indexed

* This library does not use any Arduino timer, remaining free for other uses.

Thus we can use up to four universes simultaneously, each functioning as an input or output DMX.

In the examples of the library have as:
- Receive one DMX universe.
- Mix 2 DMX inputs (2 universes) in one, with patched channels. 200 + 200 input channels, output 400 channels.
- Mix 2 DMX inputs (2 universes) in one, with higher value priority (HTP)
- Use interrupts to send or receive in synchronous mode.
- Use non-standard fast DMX modes.

* 2048 channels with DMX1000K – 512 with DMX512
0/5000
จาก: -
เป็น: -
ผลลัพธ์ (อังกฤษ) 1: [สำเนา]
คัดลอก!
Arduino four universes DMX 512 libraryPublished on 3 June, 2012 by Toni Merino in Arduino projectsAfter searching the web for Arduino DMX libraries, and test, we find no library allowing the use of multiple DMX universes and that did not use the timers of the arduino, so finally decided to create it.UPDATED 07/07/2012 ***Download current version: Arduino four universes dmx library version 0.3The wiring diagram you can find it at:Schematic Arduino shield four DMX 512 universes.Version 0.3 CHANGES- Not needed anymore to disable and enable interrupts during configuration.- Not needed anymore to modify the Arduino IDE file HarwareSerial.cpp.- Experimental support for non-standard DMX modes, faster and with more channels per universe:DMX512 (250 kbaud – 2 to 512 channels) Standard USITT DMX-512 1990DMX1024 (500 kbaud – 2 to 1024 channels) Completely non standard – TESTED okDMX2048 (1000 kbaud – 2 to 2048 channels) called by Manufacturers DMX1000K ?- Removed leds tx – rx for speedup, if required shall be implemented in the program- Interrupts on frame transmitted and frame received by each universe, user callback functions.Known issues:When we compile get the error: 'ArduinoDmxN' was not Declared In This scope:Check if you have configured the correct type of board in the Arduino IDE, menu tools > board(with Arduino nano can only use one USART = ArduinoDmx0 = USART0)Errors while programing Arduino:Will be necessary to remove the DMX shield, and put it back once programmed.Flicker when controlling LEDs:If we are dealing with LED lights, flicker may appear due to a refresh rate too low, we use fewer channels per universe (eg 200 instead of 512, to increase the frequency) and / or use less universes. This is a well known problem that affects all consoles and controllers that send all 512 channels, even when the maximum DMX refresh rate (around 44 Hz) is used.Note about the refresh time:The Arduino Mega and Arduino Nano use a microcontroller Atmel AVR 8-bit at 16 Mhz, which imposes a limitation of resources.For example, 4 buffers in DMX1000K mode at 2048 channels each, will consume ALL the memory on an Arduino Mega 2560, so it must be clear what we are doing.We should note that in practice we will probably not use all universes with all channels if we keep up the refresh rate of the DMX inputs and outputs.Instructions for library setup – version 0.3:Copy deskontrol library folder "Dmx" to arduino-XX.XX/libraries/Instructions for library use:There are four objects already created called "ArduinoDmx0″, "ArduinoDmx1″, "ArduinoDmx2″, "ArduinoDmx3″, each of these objects using a USART of the Arduino Mega, with Arduino nano can only use "ArduinoDmx0″ because there is only one USART.When compiling your programs, in order to economy Arduino resources, should comment in the "lib_dmx.h" lines with "# define USE_UARTN" of USARTs not going to use (only Arduino Mega).The library usage is very easy, the functions that you have to use are:ArduinoDmxN.set_control_pin (PIN_NUMBER); // if not used -1A call to this function we assign the pin number to be used to control the MAX485 driver, if it works as a universe of input or output. (Arduino pin that connects to pins 2 and 3 of the MAX485), can be any Arduino digital output pin.ArduinoDmxN.set_rx_address (DMX_RX_ADDRESS);Calling this function assign the DMX INPUT start address for this universe, can be any value between 1 and 510 (2046)*.ArduinoDmxN.set_tx_address (DMX_TX_ADDRESS);Calling this function assign the DMX OUT start address for this universe, can be any value between 1 and 510 (2046)*.ArduinoDmxN.set_rx_channels (NUMBER_OF_CHANNELS);A call to this function we assign the number of channels of DMX INPUT for this universe, can be any value between 2 and 512 (2048)*.ArduinoDmxN.set_tx_channels (NUMBER_OF_CHANNELS);A call to this function we assign the number of DMX OUT channels for this universe, can be any value between 2 and 512 (2048)*.If you want to use sincronous mode:ArduinoDmxN.attachTXInterrupt (my_TX_ISR_name);A call to this function we assign the name of the user callback function that is activated each time that finish sending a DMX frame in a DMX universe. (avoid loss of time in the main program loop)ArduinoDmxN.attachRXInterrupt (my_RX_ISR_name);A call to this function we assign the name of the user callback function that is activated each time that finish receiving a DMX frame in a DMX universe. (avoid loss of time in the main program loop)To begin transmitting or receiving a DMX universe (currently not possible simultaneously in the same universe), use one of the following functions:ArduinoDmxN.init_rx (DMX_MODE); // *** new parameter DMX_MODE ***A call to this function (once called the above functions) starts this universe to DMX RECEIVE.ArduinoDmxN.init_tx (DMX_MODE); // *** new parameter DMX_MODE ***A call to this function (once called the above functions) starts this universe to DMX TRANSMIT.To write DMX output values: ArduinoDmxN.TxBuffer [CHANNEL - 1] = Data;To read DMX input values: Data = ArduinoDmxN.RxBuffer [CHANNEL - 1]; // channel is 0 indexed* This library does not use any Arduino timer, remaining free for other uses.Thus we can use up to four universes simultaneously, each functioning as an input or output DMX.In the examples of the library have as:- Receive one DMX universe.- Mix 2 DMX inputs (2 universes) in one, with patched channels. 200 + 200 input channels, output 400 channels.- Mix 2 DMX inputs (2 universes) in one, with higher value priority (HTP)- Use interrupts to send or receive in synchronous mode.- Use non-standard fast DMX modes.* 2048 channels with DMX1000K – 512 with DMX512
การแปล กรุณารอสักครู่..
ผลลัพธ์ (อังกฤษ) 2:[สำเนา]
คัดลอก!
Arduino Four universes DMX 512 Library
Published on 3 June, 2,012th by Toni Merino in Arduino Projects
After searching the Web for Arduino DMX libraries, and Test, we Find no Library allowing the use of multiple DMX universes and that did not use the timers of the. Arduino, so finally decided to create it. *** UPDATED *** 7.7.2012 Download current Version: Arduino Four universes dmx Library Version 0.3 The wiring diagram You Can Find it at: Schematic Arduino Shield Four DMX 512 universes. Version. 0.3 CHANGES - Not needed anymore to Enable and Disable interrupts during Configuration. - Not needed anymore to modify the Arduino IDE file HarwareSerial.cpp. - Experimental Support for non-standard DMX modes, Faster and with more Channels per Universe: DMX512 (250 Kbaud. - 2 to 512 Channels) Standard USITT DMX-512 1 990 DMX1024 (500 Kbaud - 2 to 1024th Channels) Completely non standard - TESTED OK DMX2048 (1 000 Kbaud - 2 to 2048 Channels) Called by Manufacturers DMX1000K? - Removed leds TX - RX for. Speedup, if required Shall be implemented in the Program - Interrupts on Frame transmitted and Frame received by each Universe, user callback functions. Known issues: When we compile Get the Error: 'ArduinoDmxN' was not Declared In This scope: Check if You have. Type of board in the correct configured the Arduino IDE, menu Tools> board (with Arduino Nano Can only use one USART = ArduinoDmx0 = USART0) Errors while Programing Arduino: Will be necessary to Remove the DMX Shield, and Put it Back once programmed. Controlling LEDs flicker when: If we are Dealing with LED Lights, flicker May appear Due to a refresh rate Too low, we use fewer Channels per Universe (eg 200 instead of 512, to increase the frequency) and / or use less universes. This is a well Known Problem that affects all Consoles and controllers that Send all 512 Channels, even when the maximum DMX refresh rate (Around 44 Hz) is used. Note About the refresh time: The Arduino Mega and Arduino Nano use a microcontroller Atmel AVR. 8-bit at 16 Mhz, which imposes a Limitation of Resources. For example, 4 buffers in DMX1000K mode at 2048 Channels each, Will Consume ALL the memory on an Arduino Mega the 2560th, so it must be Clear what we are doing. We should. we note that in Practice Will probably not if we use all universes with all Channels Keep up the refresh rate of the DMX inputs and outputs. Instructions for Library Setup - Version 0.3: Copy Deskontrol Library Folder "Dmx" to Arduino-xx.xx /. libraries / Instructions for Library use: There are Four Objects already Created Called "ArduinoDmx0", "ArduinoDmx1", "ArduinoDmx2", "ArduinoDmx3", each of these Objects using a USART of the Arduino Mega, with Arduino Nano Can only use "ArduinoDmx0. "because there is only one USART. When Compiling your programs, in Order to Economy Arduino Resources, should comment in the "Lib_dmx.h" Lines with "# define USE_UARTN" of USARTs not going to use (only Arduino Mega). The Library. usage is very Easy, You have to use the functions that are: ArduinoDmxN.set_control_pin (PIN_NUMBER); // -1 If not used A Call to this function we assign the pin to be used to Control the Number Driver MAX485, if it Works as a Universe of input or output. (Arduino pin that Connects to Pins 2 and 3 of the MAX485), Can be any Arduino Digital output pin. ArduinoDmxN.set_rx_address (DMX_RX_ADDRESS); Calling this function assign the DMX INPUT Start address for this Universe, Can any be between 1 and Value. 510 (2046) *. ArduinoDmxN.set_tx_address (DMX_TX_ADDRESS); Calling this function assign the DMX OUT Start address for this Universe, between 1 and Value Can be any 510 (2 046) *. ArduinoDmxN.set_rx_channels (NUMBER_OF_CHANNELS); A Call to this. function we assign the Number of Channels of DMX INPUT for this Universe, Can any be between 2 and 512 Value (2048) *. ArduinoDmxN.set_tx_channels (NUMBER_OF_CHANNELS); A Call to this function we assign the Number of Channels DMX OUT for this Universe. , Can any be between 2 and Value 512 (two thousand and forty-eight) *. If You Want to use Sincronous mode: ArduinoDmxN.attachTXInterrupt (My_TX_ISR_name); A Call to this function we assign the name of the user callback function that is activated each time that Finish. sending a DMX frame in a DMX universe. (Avoid Loss of time in the Main Program loop) ArduinoDmxN.attachRXInterrupt (My_RX_ISR_name); A Call to this function we assign the name of the user callback function that is activated each time that a receiving Finish Frame in a DMX DMX Universe. (Avoid Loss of time in the Main Program loop) To BEGIN transmitting or receiving a DMX Universe (currently not possible simultaneously in the Same Universe), use one of the following functions: ArduinoDmxN.init_rx (DMX_MODE); // *** New *** parameter DMX_MODE A Call to this function (once Called the above functions) starts this Universe to DMX RECEIVE. ArduinoDmxN.init_tx (DMX_MODE); // *** New *** parameter DMX_MODE A Call to this function (once Called the above functions) starts to DMX transmit this Universe. To write DMX output values: ArduinoDmxN.TxBuffer [CHANNEL - 1] = Data; To read DMX. input values: Data = ArduinoDmxN.RxBuffer [CHANNEL - 1]; 0 // Channel is indexed * This Library does not use any Arduino Timer, remaining free for Other uses. Thus we Can use up to Four universes simultaneously, each functioning as an input or output DMX. In the examples of the Library have as:. - Receive one DMX Universe. - Mix 2 DMX inputs (2 universes) in one, with patched Channels. 200 + 200 input Channels, output 400 Channels. - Mix 2 DMX inputs (2 universes) in one, with higher Value Priority (HTP) - Use interrupts to Send or receive in synchronous mode. - Use non-standard fast DMX modes. *. 2048 channels with DMX1000K - 512 with DMX512.




































































































การแปล กรุณารอสักครู่..
ผลลัพธ์ (อังกฤษ) 3:[สำเนา]
คัดลอก!
Arduino four universes DMX 512 library
Published on 3 June 2012 by, Toni Merino in Arduino projects
After searching the. Web for Arduino DMX, test libraries and, find we no library allowing the use of multiple DMX universes and that did not. Use the timers of, the Arduino so finally decided to create it.

* * * UPDATED 07 / 07 / 2012 * * *

Download current version:Arduino four universes DMX library version 0.3


The wiring diagram you can find it at:

Schematic Arduino shield four. DMX 512 universes.

Version 0.3 CHANGES
- Not needed anymore to disable and enable interrupts during configuration.
- Not. Needed anymore to modify the Arduino IDE file HarwareSerial.cpp.
- Experimental support for non-standard, DMX modesFaster and with more channels per universe:

DMX512 (250 kbaud - 2 to 512 channels) Standard USITT DMX-512 1990
DMX1024. (500 kbaud - 2 to 1024 channels) Completely non standard - TESTED OK
DMX2048 (1000 kbaud - 2 to 2048 channels) called by. Manufacturers DMX1000K?
- Removed LEDs TX - Rx for speedup if required, shall be implemented in the program
.- Interrupts on frame transmitted and frame received by, each universe user callback functions.


Known issues When we. Compile get the error: 'ArduinoDmxN' was not Declared In This scope:
Check if you have configured the correct type of board. In the, Arduino IDE menu Tools > board
(with Arduino nano can only use one USART = ArduinoDmx0 = USART0)
Errors while programing. Arduino:
.Will be necessary to remove the, DMX shield and put it back once programmed.

Flicker when controlling LEDs:
If we are. Dealing with LED lights flicker may, appear due to a refresh rate too low we use, fewer channels per universe (eg 200 instead. Of 512 to increase, the frequency) and / or use less universes.This is a well known problem that affects all consoles and controllers that send all, 512 channels even when the maximum. DMX refresh rate (around 44 Hz) is used.

Note about the refresh time:
The Arduino Mega and Arduino Nano use a microcontroller. Atmel AVR 8-bit at, 16 Mhz which imposes a limitation of resources.
For example 4 buffers, in DMX1000K mode at 2048 channels. Each.Will consume ALL the memory on an Arduino, Mega 2560 so it must be clear what we are doing.
We should note that in practice. We will probably not use all universes with all channels if we keep up the refresh rate of the DMX inputs and outputs.

Instructions. For library setup - version 0.3:
Copy deskontrol Library folder "Dmx." to arduino-XX.XX / libraries /

Instructions for library. Use:
.There are four objects already created called "ArduinoDmx0", "ArduinoDmx1", "", "" ArduinoDmx2 ArduinoDmx3, of each these. Objects using a USART of the Arduino Mega with Arduino, nano can only use "ArduinoDmx0" because there is only one USART.

When. Compiling your programs in order, to economy Arduino resources should comment, in the lib_dmx. "H. "Lines with" # define USE_UARTN. "Of USARTs not going to use (only Arduino Mega).

The library usage is, very easy the. Functions that you have to use are:

ArduinoDmxN.set_control_pin (PIN_NUMBER); / / if not used - 1

A call to this function. We assign the pin number to be used to control the MAX485 driver if it, works as a universe of input or output.(Arduino pin that connects to pins 2 and 3 of the MAX485), can be any Arduino digital output pin.

ArduinoDmxN.set_rx_address. (DMX_RX_ADDRESS);

Calling this function assign the DMX INPUT start address for, this universe can be any value between 1 and 510 (2046) *.

ArduinoDmxN.set_tx_address. (DMX_TX_ADDRESS);

Calling this function assign the DMX OUT start address for, this universeCan be any value between 1 and 510 (2046) *.

ArduinoDmxN.set_rx_channels (NUMBER_OF_CHANNELS);

A call to this function. We assign the number of channels of DMX INPUT for this universe can be, any value between 2 and 512 (2048) *.

ArduinoDmxN.set_tx_channels. (NUMBER_OF_CHANNELS);

A call to this function we assign the number of DMX OUT channels for, this universeCan be any value between 2 and 512 (2048) *.

If you want to use sincronous mode:

ArduinoDmxN.attachTXInterrupt (my_TX_ISR_name);

A. Call to this function we assign the name of the user callback function that is activated each time that finish sending a. DMX frame in a DMX universe. (avoid loss of time in the main program loop)

ArduinoDmxN.attachRXInterrupt (my_RX_ISR_name);

.A call to this function we assign the name of the user callback function that is activated each time that finish receiving. A DMX frame in a DMX universe. (avoid loss of time in the main program loop)

To begin transmitting or receiving a DMX universe. (currently not possible simultaneously in the same universe), use one of the following functions:

ArduinoDmxN.init_rx (DMX_MODE);/ / * * * * * * * * * * * * * * new parameter DMX_MODE

A call to this function (once called the above functions) starts this universe to DMX. RECEIVE.

ArduinoDmxN.init_tx (DMX_MODE); / / * * * * * * * * * * * * * * new parameter DMX_MODE

A call to this function (once called the above. Functions) starts this universe to DMX TRANSMIT.

To write DMX output values: ArduinoDmxN.TxBuffer [CHANNEL - 1] = Data;
To. Read DMX input values:Data = ArduinoDmxN.RxBuffer [CHANNEL - 1]; / / channel is 0 indexed

* This library does not use any, Arduino timer remaining. Free for other uses.

Thus we can use up to four universes simultaneously each functioning, as an input or output DMX.

In. The examples of the library have as:
- Receive one DMX universe.
- Mix 2 DMX inputs (2 universes), in one with patched channels.200 200, input channels output 400 channels.
- Mix 2 DMX inputs (2 universes), in one with higher value priority (HTP)
-. Use interrupts to send or receive in synchronous mode.
- Use non-standard fast DMX modes.

* 2048 channels with DMX1000K. To 512 with DMX512.
การแปล กรุณารอสักครู่..
 
ภาษาอื่น ๆ
การสนับสนุนเครื่องมือแปลภาษา: กรีก, กันนาดา, กาลิเชียน, คลิงออน, คอร์สิกา, คาซัค, คาตาลัน, คินยารวันดา, คีร์กิซ, คุชราต, จอร์เจีย, จีน, จีนดั้งเดิม, ชวา, ชิเชวา, ซามัว, ซีบัวโน, ซุนดา, ซูลู, ญี่ปุ่น, ดัตช์, ตรวจหาภาษา, ตุรกี, ทมิฬ, ทาจิก, ทาทาร์, นอร์เวย์, บอสเนีย, บัลแกเรีย, บาสก์, ปัญจาป, ฝรั่งเศส, พาชตู, ฟริเชียน, ฟินแลนด์, ฟิลิปปินส์, ภาษาอินโดนีเซี, มองโกเลีย, มัลทีส, มาซีโดเนีย, มาราฐี, มาลากาซี, มาลายาลัม, มาเลย์, ม้ง, ยิดดิช, ยูเครน, รัสเซีย, ละติน, ลักเซมเบิร์ก, ลัตเวีย, ลาว, ลิทัวเนีย, สวาฮิลี, สวีเดน, สิงหล, สินธี, สเปน, สโลวัก, สโลวีเนีย, อังกฤษ, อัมฮาริก, อาร์เซอร์ไบจัน, อาร์เมเนีย, อาหรับ, อิกโบ, อิตาลี, อุยกูร์, อุสเบกิสถาน, อูรดู, ฮังการี, ฮัวซา, ฮาวาย, ฮินดี, ฮีบรู, เกลิกสกอต, เกาหลี, เขมร, เคิร์ด, เช็ก, เซอร์เบียน, เซโซโท, เดนมาร์ก, เตลูกู, เติร์กเมน, เนปาล, เบงกอล, เบลารุส, เปอร์เซีย, เมารี, เมียนมา (พม่า), เยอรมัน, เวลส์, เวียดนาม, เอสเปอแรนโต, เอสโทเนีย, เฮติครีโอล, แอฟริกา, แอลเบเนีย, โคซา, โครเอเชีย, โชนา, โซมาลี, โปรตุเกส, โปแลนด์, โยรูบา, โรมาเนีย, โอเดีย (โอริยา), ไทย, ไอซ์แลนด์, ไอร์แลนด์, การแปลภาษา.

Copyright ©2024 I Love Translation. All reserved.

E-mail: