Jump to content

TEST-T: Difference between revisions

From Teltonika Telematics Wiki
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<!DOCTYPE html>
[[File:Tachosync_dashboard.png|300px|TachoSync|right|frameless]]
<html lang="en">
[https://tacho.teltonika.lt '''TachoSync'''] is a cloud-based SaaS (Software-as-a-Service) solution that streamlines remote download and management of tachograph data, ensuring effortless compliance and operational efficiency.
<head>
<br><br>
    <meta charset="UTF-8">
As we developed TachoSync, we focused on providing an exceptional user experience while listening to our customers and learning from the journey with our previous product [[WEB Tacho]]. We’ve taken valuable feedback, improved upon long-standing requests, addressed known issues, and—importantly—kept intact the features and functionality that worked best. Our mission has always been to make tachograph data retrieval effortless, and we hope you’ll feel that in every interaction with our product.
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
== Platform Structure ==
    <title>Wikimedia Style Dropdown</title>
* '''[[TachoSync/01. Dashboard & System Overview|01. Dashboard & System Overview]]''' — General UI navigation, global settings, platform billing credits, and system release notes.
    <style>
* '''[[TachoSync/02. Vehicles|02. Vehicles]]''' — Configuration for automated remote download (RDL) schedules, device pairing (IMEI/VRN), and tracking hardware compatibility.
        /* Wikimedia-inspired styling */
* '''[[TachoSync/03. Drivers|03. Drivers]]''' — Driver profile management and driver tachograph card download configurations.
        .mw-dropdown {
* '''[[TachoSync/04. Files|04. Files]]''' — Technical documentation regarding secure DDD file ingestion, parsing logic, and storage data retention.
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
* '''[[TachoSync/05. Companies|05. Companies]]''' — Multi-tenancy fleet structures, background Company Card Authenticator (CCA) setup, and card reader configurations.
            font-size: 14px;
* '''[[TachoSync/06. Users|06. Users]]''' — User profile creation and Role-Based Access Control (RBAC) permission matrices.
            max-width: 300px;
* '''[[TachoSync/07. Integrations|07. Integrations]]''' — Developer resources, including REST API endpoints, webhooks, and automated outbound SFTP file synchronization.
            margin: 20px auto;
        }


        /* The clickable button/summary */
[[Category:Software & Applications]]
        .mw-dropdown-summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 12px;
            background-color: #f8f9fa;
            border: 1px solid #a2a9b1;
            border-radius: 2px;
            cursor: pointer;
            user-select: none;
            font-weight: bold;
            color: #202122;
            transition: border-color 0.1s, background-color 0.1s;
        }
 
        .mw-dropdown-summary:hover {
            background-color: #ffffff;
            border-color: #3366cc; /* Wikimedia Blue */
        }
 
        /* The arrow icon */
        .mw-dropdown-arrow {
            display: inline-block;
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid #202122;
            transition: transform 0.2s ease;
        }
 
        /* Container for the hidden content */
        .mw-dropdown-content {
            display: none;
            padding: 12px;
            background-color: #ffffff;
            border: 1px solid #a2a9b1;
            border-top: none;
            border-radius: 0 0 2px 2px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
            color: #202122;
        }
 
        /* Active states triggered via JS */
        .mw-dropdown.is-open .mw-dropdown-content {
            display: block;
        }
 
        .mw-dropdown.is-open .mw-dropdown-arrow {
            transform: rotate(180deg);
        }
    </style>
</head>
<body>
 
    <div class="mw-dropdown" id="wikimediaDropdown">
        <div class="mw-dropdown-summary">
            <span>Click to reveal details</span>
            <span class="mw-dropdown-arrow"></span>
        </div>
        <div class="mw-dropdown-content">
            <p>This is the hidden content! You can put text, links, images, or forms inside here.</p>
        </div>
    </div>
 
    <script>
        const dropdown = document.getElementById('wikimediaDropdown');
        const summary = dropdown.querySelector('.mw-dropdown-summary');
 
        summary.addEventListener('click', () => {
            dropdown.classList.toggle('is-open');
        });
 
        // Optional: Close the dropdown if clicking outside of it
        window.addEventListener('click', (e) => {
            if (!dropdown.contains(e.target)) {
                dropdown.classList.remove('is-open');
            }
        });
    </script>
 
</body>
</html>

Latest revision as of 10:02, 19 June 2026

Main Page > Software & Applications > TEST-T
TachoSync
TachoSync

TachoSync is a cloud-based SaaS (Software-as-a-Service) solution that streamlines remote download and management of tachograph data, ensuring effortless compliance and operational efficiency.

As we developed TachoSync, we focused on providing an exceptional user experience while listening to our customers and learning from the journey with our previous product WEB Tacho. We’ve taken valuable feedback, improved upon long-standing requests, addressed known issues, and—importantly—kept intact the features and functionality that worked best. Our mission has always been to make tachograph data retrieval effortless, and we hope you’ll feel that in every interaction with our product.

Platform Structure

  • 01. Dashboard & System Overview — General UI navigation, global settings, platform billing credits, and system release notes.
  • 02. Vehicles — Configuration for automated remote download (RDL) schedules, device pairing (IMEI/VRN), and tracking hardware compatibility.
  • 03. Drivers — Driver profile management and driver tachograph card download configurations.
  • 04. Files — Technical documentation regarding secure DDD file ingestion, parsing logic, and storage data retention.
  • 05. Companies — Multi-tenancy fleet structures, background Company Card Authenticator (CCA) setup, and card reader configurations.
  • 06. Users — User profile creation and Role-Based Access Control (RBAC) permission matrices.
  • 07. Integrations — Developer resources, including REST API endpoints, webhooks, and automated outbound SFTP file synchronization.