├── RailuinoApp ├── res │ ├── drawable-hdpi │ │ ├── up.png │ │ ├── back.png │ │ ├── down.png │ │ ├── help.png │ │ ├── loco.png │ │ ├── mic_on.png │ │ ├── v200.png │ │ ├── forward.png │ │ ├── mic_off.png │ │ ├── mic_on_2.png │ │ ├── power_on.png │ │ ├── settings.png │ │ ├── ic_launcher.png │ │ ├── mic_off_2.png │ │ ├── power_off.png │ │ ├── power_off_2.png │ │ ├── power_on_2.png │ │ ├── turn_round.png │ │ ├── turn_straight.png │ │ ├── ic_action_search.png │ │ ├── bluetooth_connected.png │ │ ├── bluetooth_searching.png │ │ └── bluetooth_disconnected.png │ ├── values │ │ ├── styles.xml │ │ ├── dimens.xml │ │ └── strings.xml │ ├── drawable-mdpi │ │ ├── ic_launcher.png │ │ └── ic_action_search.png │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-large │ │ └── dimens.xml │ ├── layout │ │ ├── spinner.xml │ │ ├── loco_new.xml │ │ ├── turn_new.xml │ │ ├── loco.xml │ │ ├── test2.xml │ │ ├── turn.xml │ │ ├── test.xml │ │ ├── activity_main.xml │ │ └── main.xml │ ├── menu │ │ └── activity_main.xml │ └── values-de │ │ └── strings.xml ├── libs │ └── android-support-v4.jar ├── src │ └── de │ │ └── pleumann │ │ └── railuinoapp │ │ ├── Configuration.java │ │ ├── Accessory.java │ │ ├── PageIndicator.java │ │ ├── Locomotive.java │ │ └── Railuino.java ├── .classpath ├── project.properties ├── proguard-project.txt ├── .project └── AndroidManifest.xml └── Railuino └── src ├── can ├── defaults.h ├── global.h ├── mcp2515.h ├── mcp2515_defs.h └── mcp2515.c ├── examples ├── 01.Controller │ ├── Power │ │ └── Power.ino │ ├── Turnout │ │ └── Turnout.ino │ ├── Headlight │ │ └── Headlight.ino │ ├── CV │ │ └── CV.ino │ ├── Function │ │ └── Function.ino │ ├── Direction │ │ └── Direction.ino │ └── Speed │ │ └── Speed.ino ├── 05.Misc │ ├── Sniffer │ │ └── Sniffer.ino │ ├── Address │ │ └── Address.ino │ ├── Joystick │ │ └── Joystick.ino │ ├── Console │ │ └── Console.ino │ └── Tests │ │ └── Tests.ino ├── 02.Reporter │ ├── Monitor │ │ └── Monitor.ino │ └── PingPong │ │ └── PingPong.ino ├── 04.Gateway │ ├── LowLevel │ │ └── LowLevel.ino │ ├── Serial │ │ └── Serial.ino │ └── Bluetooth │ │ └── Bluetooth.ino └── 03.Automation │ ├── Commuter │ └── Commuter.ino │ └── CommuterWithTurnout │ └── CommuterWithTurnout.ino ├── README ├── ir ├── infrared2.c └── infrared.c ├── Railuino.h └── Railuino.cpp /RailuinoApp/res/drawable-hdpi/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MBuratto/railuino/HEAD/RailuinoApp/res/drawable-hdpi/up.png -------------------------------------------------------------------------------- /RailuinoApp/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |