You are not logged in. Click here to login.

Enable Multi-Character Chording.
Use predifined words, and map them to a single or, multiple keys.

Enable Custom Key Map.
Upload your config file via the 'Custom Key Map' tab under the Settings menu.

Enable Sound.
Play audio for letters or words as you type.

Discovery Mode
When set to enabled, the current lesson is disabled, and only the audio is played for each key press.

Enable Custom Text.
Copy and paste your text below .



{{item.chord}} {{item.key}}

Example

                                    {
                                        "chords": 
                                        [
                                            {
                                                "chord": "RROL",
                                                "key": "email"
                                            },
                                            {
                                                "chord": "RMOR",
                                                "key": "i"
                                            },
                                            {
                                                "chord": "RMOO",
                                                "key": "ant"
                                            }
                                        ]
                                    }
                                

JSON Schema

                                {
                                    "$schema": "http://json-schema.org/draft-07/schema#",
                                    "$id": "Will be added a later date >> e.g http://twiddler/userid/custom.mapping.schema.json",
                                    "title": "Twiddler Mapping",
                                    "description": "Custom Twiddler Mapping",
                                    "type": "object"
                                    
                                    "properties" : {
                                        "chords" : {
                                            "description" : "List of custom keys and associated chords",
                                            "type" : "array",
                                            "items" : {
                                                "description" : "custom key and associated chord",
                                                "type" : "object",
                                                "properties" : {
                                                    "chord" : {
                                                        "type" : "string"
                                                    },
                                                    "key" : {
                                                        "type" : "string"
                                                    },
                                                    "required": [ "chord", "key" ]
                                                }
                                            }
                                        }
                                    }
    
                                    "required": [ "chords" ]
                                }
                                

Change Password