DT-12 Transmission - Page 1 (2024)

');}else {$('.followThisTopic').text("Add To Favorites");alert("Something is wrong with the network. Try again.");}},'json');}// stop following topic buttonif ($(target).hasClass('followingTopic')) {e.preventDefault();$('.followingTopic').text('...sending');var topic = $('.topicHeading').data("topic");var options = {"stopFollowingTopic":1, "topicId": topic};$.post('/truckers-forum/includes/php/setUserPreferences.php', options, function(data) {if (data.status == "success") {$('.followingTopic').replaceWith('

Add To Favorites

');}else {$('.followThisTopic').text("Add To Favorites");alert("Something is wrong with the network. Try again.");}},'json');}// show tag list buttonif ($(target).hasClass('showTagList')) {$('.newTopicWrapper').hide();$('.tagListWrapper').fadeIn();}});$('.editorButtonDiv').on('click', function(e) {var closestDiv = $(e.target).closest('div');if ($(closestDiv).is('.tableFormatButton')) {var textAreaBox = $('.textAreaBox');var commandBefore = ($(e.target).closest('.tableButton').data('commandbefore'));var commandAfter = ($(e.target).closest('.tableButton').data('commandafter'));var selectionStart = $(textAreaBox).getSelection().start;var selectionEnd = $(textAreaBox).getSelection().end;if ($(textAreaBox).getSelection().length == 0) {$(textAreaBox).focus();var textToInsert = commandBefore + '' + commandAfter;$(textAreaBox).insertText(textToInsert, selectionStart);if (commandBefore == "

") {$(textAreaBox).setCursorPosition(selectionStart + 12);}else if (commandBefore == "") {$(textAreaBox).setCursorPosition(selectionStart + 8);}else {$(textAreaBox).setCursorPosition(selectionStart + 3);}}else {$(textAreaBox).focus();$(textAreaBox).surroundSelectedText(commandBefore, commandAfter);}}if ($(closestDiv).is('.tableLinkButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableLinkButton').addClass('tableButtonPressed');$('.linkForm').fadeIn();}if ($(closestDiv).is('.tableImageButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableImageButton').addClass('tableButtonPressed');$('.imageForm').fadeIn();}if ($(closestDiv).is('.tableLinkTTButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableLinkTTButton').addClass('tableButtonPressed');$('.linkOnTTForm').fadeIn();}if ($(closestDiv).is('.tableSmileyButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableSmileyButton').addClass('tableButtonPressed');$('.smileyForm').fadeIn();}});$('.formatFormCancel').on('click', function() {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();});$('.previewButton').on('click', function(e) {e.preventDefault();$('.previewButton').html('...Creating Preview')var comment = $('.textAreaBox').val();var dataToSend = {"comment": comment, "createPreview":1};$.post('/truckers-forum/includes/php/admin.php', dataToSend, function(data) {$('html, body').animate({'scrollTop':'+=300'}, 600);$('.previewButton').html('Preview');$('.previewDivInner').html(data.comment);$('.previewDiv').fadeIn();},'json');});$('.previewCancel').on('click', function(e) {e.preventDefault();$('.previewDivInner').html('');$('.previewDiv').fadeOut();});$('.previewReply').on('click', function(e) {e.preventDefault();$('.previewDivInner').html('');$('.previewDiv').fadeOut();$('.replyButton').trigger('click');});$('.replyButton').on('click', function(e) {e.preventDefault();if ($('.textAreaBox').val().length > 5500) {alert('Your post is too long. Please reduce the size to below 5,500 characters. The count is shown below the window you\'re typing into.');}else {$('.replyButton').html('Sending...');var topicBody = $('.textAreaBox').val();var categoryID = $('.categoryHeading').data('category');var topic = $('.topicHeading').data('topic');if ($('.subscribeButton').hasClass('subscribedToTopic')) {var subscribed = "yes";}else {var subscribed = "no";}var dataArray = {'categoryID': categoryID, 'comment': topicBody, 'topic': topic, 'subscribed': subscribed};$.post('/truckers-forum/includes/php/insertNewComment.php', dataArray, function(data) {var dataReturned = $.parseJSON(data);if (dataReturned.status == "success") {$('.replyButton').html('Success! Reloading page...');location.reload(true);}// if they posted too recentlyelse if (dataReturned.status == "timeLimit") {alert('Sorry, you can only post a new comment every two minutes. Please wait a short time and hit Submit again.');}else if (dataReturned.status == "moderation") {alert('Your comment is awaiting moderation. We will send you an email if it is approved. Hopefully it will only be a few minutes but it could be a few hours so we appreciate your patience. We\'re doing all we can to keep this a friendly and helpful community for everyone. Thanks!');location.reload(true);}else if (dataReturned.status == "commentLimit") {alert('Sorry, you have too many comments in moderation right now. Please be patient while we get caught up and submit this again in a little while. Thanks.')}else if (dataReturned.status == "banned") {alert('Sorry, you have been banned from posting in our forum.');}else {alert('There was an error of some sort. Please hit the "Submit" button again. If this error continues, contact brett@truckingtruth.com and we\'ll get it straightened out. Thanks.');}});}});$('.tagListUL').on('click', function(e) {e.preventDefault();var $target = $(e.target);if ($target.hasClass('btn')) {$target.toggleClass('tagged');}});$('.submitTagsButton').on("click", function(e) {e.preventDefault();$('.submitTagsButton').html('...sending');var taggedElements = $('.tagListUL').find('.tagged');var tagArray = [];for (i=0; i\n\n'; var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(insertedHtml, selectionStart, true);$('.imageForm').fadeOut();$('.tableImageButton').removeClass('tableButtonPressed');$('.urlForImage').val('');}img.src = imageUrl;}$('.submitImageButton').on('click', function() {var imageUrl = $('.urlForImage').val();validateImageUrl(imageUrl); });function validateLink(link) {return fetch(link, { method: 'HEAD' }).then(response => {return (response.status === 200 || response.status === 301 || response.status === 302);}).catch(error => {console.log('Error:', error);return false;});}$('.submitLinkButton').on('click', function(e) {e.preventDefault();var textForLink = $('.textForLink').val();if (textForLink.length < 4) {alert('Please put a description for the page you\'re linking to in the "Link Text" field.');}else {var linkUrl = $('.urlForLink').val();var linkHtml = '' + textForLink + '';var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(linkHtml, selectionStart, true);$('.linkForm').fadeOut();$('.tableLinkButton').removeClass('tableButtonPressed');$('.textForLink').val('');$('.urlForLink').val('');}});$('.ttLinkButton').on('click', function(e) {e.preventDefault();var link = parseInt($(this).data('link'));// we have to subtract 1 from link to get the proper array indexvar linkHtml = ttLinkButtonArray[link - 1];// var linkText = $(this).html();// var linkHtml = '' + linkText + ''; var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(linkHtml, selectionStart, true);});$('.smileyForm').on('click', function(e) {e.preventDefault();if ($(e.target).data('name') == "cancel") {return;}var imageName = $(e.target).closest('img').data('name');if (imageName !== 'cancel') {var imageHtml = 'DT-12 Transmission - Page 1 (1) ';var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(imageHtml, selectionStart, true);}});$('.quoteButton').on('click', function(e) {e.preventDefault();$('.newTopicWrapper').show();var comment = $(this).parents('.commentWrapper').find('.commentText');var commentor = $(this).parents('.commentWrapper').find('.nickname').html();$('html, body').animate({scrollTop: ($('.newTopicWrapper').offset().top)}, 500);// gotta get the glossary .definitionTerm spans and .tooltipElements out of the quote$(comment).find('.tooltipElements').remove();$(comment).find('.definitionTerm').each(function(i,v) {$(this).replaceWith($(this).text().trim());});$(comment).find('.viewMoreQuoteButton').remove();// $(comment).find('span[itemprop="text"]').unwrap();// $(comment).trim();var commentWrapped = "
" + $(comment).html().trim() + "
\n\n";var uidOfSender = $('.uidDiv').data('uid');// we have to get the current content of the textarea then append this quotevar currentTextAreaVal = $('.textAreaBox').val();var newTextAreaVal = currentTextAreaVal + "\n\n\n\n" + commentWrapped;// $('.textAreaBox').val(commentWrapped);$('.textAreaBox').val(newTextAreaVal);textAreaCheck(0, 1);});// this is the report button$('.reportButton').on("click", function(e) {e.preventDefault();$thisButton = $(this);if (confirm("Just confirming that you would like to report this comment?")) {$thisButton.text("..sending");var $commentWrapper = $(this).parents('.commentWrapper');var commentId = $commentWrapper.data('commentid');var commentText = $commentWrapper.find('.commentText').html();var nickname = $commentWrapper.find('.nickname a').text();var topicID = $('.topicHeading').data('topic');var topicHeading = $('.topicHeading').text();var page = $('.topicHeading').data('page');var uidOfSender = $('.uidDiv').data('uid');var options = {"reportComment":"1", "topic":topicID, "nickname":nickname, "commentText":commentText, "commentId":commentId, "uidOfSender":uidOfSender, "topicHeading":topicHeading, "page":page};$.post('/truckers-forum/includes/php/setUserPreferences.php', options, function(data) {$thisButton.text('Report');if (data.status == "success") {alert("Thanks! We've received your report about this comment and you can be certain we'll be taking a close look at it. We appreciate the help!");}else {alert("hmmmm....that didn't go through for some reason. Try hitting the 'report' button one more time. Thanks.");}},'json');}});$('.subscribeButton').on('click', function(e) {e.preventDefault();$(this).toggleClass('subscribedToTopic');});$('.goToPageSubmit').on('click', function(e) {e.preventDefault();var topic = $('.topicHeading').data('topic');var page = $(this).parents('.topicPaginationWrapper').find('.goToPage').val();var subjectString = $('.topicHeading').data('subjectstring');var locationString = "https://www.truckingtruth.com/truckers-forum/Topic-" + topic + "/";locationString += "Page-" + page + "/" + subjectString;location.href=locationString;});// this looks for the first blockquote in each commentTextWrapper and shortens it if it's really long$.each($('.commentWrapper'), function(i,comment) {// console.log($(this));var $quote = $(this).find('blockquote:first');// console.log($quote);// if the quote is taller than 450 pxif ($quote.height() > 450) {// create the "View More" buttonvar a = $("").addClass('btn btnDarkBlueArrowDown viewMoreQuoteButton').attr('data-id', i).html('View More');// add the heightReduced class to the quote$quote.addClass('heightReduced');// append the View More button and clearTall$(a).insertAfter($quote);$('').insertAfter($(a));}});// this will expand the blockquote which we shortened with the previous .each function$('.viewMoreQuoteButton').on("click", function(e) {e.preventDefault();// find the blockquotevar $blockquote = $(this).parents('.commentText').find('blockquote:eq(0)')// if the height is currently reducedif ($blockquote.hasClass('heightReduced')) {// remove the height restrictino$blockquote.removeClass('heightReduced');// convert the arrow down to an arrow up$(this).html("View Less").removeClass('btnDarkBlueArrowDown').addClass('btnDarkBlueArrowUp');// scroll to the top of the blockquote$('html, body').animate({scrollTop: ($($blockquote).offset().top - 20)}, 500);}// if it's currently at full heightelse {// add heightReduced to reduce the height$blockquote.addClass('heightReduced');// convert the button to arrow down$(this).html("View More").removeClass('btnDarkBlueArrowUp').addClass('btnDarkBlueArrowDown');// scroll back to the top of the quote$('html, body').animate({scrollTop: ($($blockquote).offset().top - 20)}, 500);}});// if there are new comments this will scroll the page to themif ($('.topicHeading').data('pagename') == "Newest" && $('.newTopic').length) {$('html, body').animate({scrollTop: ($('.newTopic:eq(0)').offset().top - 20)}, 500);}// this creates a searchable list out of the tags with List.js (/includes/js/List.js)// and the fuzzysearch plugin (/includes/js/fuzzysearch.js)var listOptions = { valueNames: [ 'sorted' ], listClass: 'tagListUL', page: 500, plugins:[ListFuzzySearch()]};var tagList = new List('tagListInnerDiv', listOptions);// this is for the page button// make an array of elements that should be included in page menuvar inclusionArray = ["h1","h2","h3",".commentInfo",".nextPageButton",".prevPageButton",".startNewTopic",".returnButtons"];// make an array of elements that should not be included in page menuvar exclusionArray = [".mobileShortcutDiv",".tooltipElements",".previewDiv",".jumpDiv",".newTopicWrapper",".tagListWrapper"];// createPageMenuButton(inclusionArray,exclusionArray);// this is for submitting ratings and tags for each conversation$('.ratingSubmitButton').on('click', function(e) {e.preventDefault();$(this).html('...sending');var rating = $('.ratingSelect').val();var topic = $('.topicHeading').data('topic');$.post('/truckers-forum/includes/php/updateTags.php', {"rating":rating, "topic_id": topic}, function(data) {$('.ratingSubmitButton').html('Success!');setTimeout(function() {$('.ratingSubmitButton').html("Submit");}, 600);});});});

Topic 22185 | Page 1

  • Trucker's Forum
  • DT-12 Transmission - Page 1 (2)
  • General Category
  • DT-12 Transmission - Page 1 (3)
  • DT-12 transmission

Page 1 of 1

Kevin L.'s Comment

DT-12 Transmission - Page 1 (4)

Kevin L.

Scranton, PA

Rookie Solo Driver

Posts: 117

Joined Us:

6 years, 6 months ago

5 Photos

6 years ago

Anyone out here experience any issues with a DT-12 Transmisison popping into neutral then though it errors that indicate sensor or trans air pressure to low? The truck in question has under 80k miles on it.

G-Town's Comment

DT-12 Transmission - Page 1 (5)

G-Town

Moderator

Lewes , DE

Experienced Driver

Posts: 10634

Joined Us:

8 years, 7 months ago

424 Photos

6 years ago

The newer auto-shift transmissions rely on air pressure to operate. During a drop and hook , or moving the tandems , anything that requires air to be released is typically when this happens. Let the pressure build back up before trying to move.

If it happens while driving, it could be a sign of an air leak. If that's the case, report it and get it checked as soon as possible.

Tandems:

Tandem Axles

A set of axles spaced close together, legally defined as more than 40 and less than 96 inches apart by the USDOT. Drivers tend to refer to the tandem axles on their trailer as just "tandems". You might hear a driver say, "I'm 400 pounds overweight on my tandems", referring to his trailer tandems, not his tractor tandems. Tractor tandems are generally just referred to as "drives" which is short for "drive axles".

Tandem:

Tandem Axles

A set of axles spaced close together, legally defined as more than 40 and less than 96 inches apart by the USDOT. Drivers tend to refer to the tandem axles on their trailer as just "tandems". You might hear a driver say, "I'm 400 pounds overweight on my tandems", referring to his trailer tandems, not his tractor tandems. Tractor tandems are generally just referred to as "drives" which is short for "drive axles".

Drop And Hook:

Drop and hook means the driver will drop one trailer and hook to another one.

In order to speed up the pickup and delivery process a driver may be instructed to drop their empty trailer and hook to one that is already loaded, or drop their loaded trailer and hook to one that is already empty. That way the driver will not have to wait for a trailer to be loaded or unloaded.

Kevin L.'s Comment

DT-12 Transmission - Page 1 (6)

Kevin L.

Scranton, PA

Rookie Solo Driver

Posts: 117

Joined Us:

6 years, 6 months ago

5 Photos

6 years ago

Got it towed to freightliner but not making any money while its in the shop like that and no idea how long it will take to get fixed. Personally i think its an air pressure sensor in the trans but im no expert

andhe78's Comment

DT-12 Transmission - Page 1 (7)

andhe78

Buffalo, NY

Experienced Driver

Posts: 471

Joined Us:

6 years, 10 months ago

27 Photos

6 years ago

Make sure you keep track of what time you broke down and what time you got back into your truck and send in your breakdown macro. I’ve had no problems getting breakdown pay from Maverick. At least it’s something.

PackRat's Comment

DT-12 Transmission - Page 1 (8)

PackRat

Moderator

Home State: VA

Experienced Driver

Posts: 10048

Joined Us:

8 years, 4 months ago

855 Photos

6 years ago

How much air pressure were you losing after parking for 10 hours? Enough to set the low air alarm off? I had an air leak on the auto transmission I had in a T-680. Was a universal elbow fitting on the transmission air output hose. It would lose 80 psi of air in less than 3 hours while parked. Changed it out to a normal AN fitting elbow and no more issues.

HOS:

Hours Of Service

HOS refers to the logbook hours of service regulations.

Kevin L.'s Comment

DT-12 Transmission - Page 1 (9)

Kevin L.

Scranton, PA

Rookie Solo Driver

Posts: 117

Joined Us:

6 years, 6 months ago

5 Photos

6 years ago

I got a call a few hours ago from fleet net saying my truck was fixed. I got a ride to it and they had not even looked at it. I waited anyhow to find out what was wrong with it and they seemed unsure after looking it over. They said I had about 20 error codes on the transmission clutch actuator not sure when it will be fixed or even if they will have to pull the trans or not. Guess I’m home for Easter

C T.'s Comment

DT-12 Transmission - Page 1 (10)

C T.

Atlanta, GA

Experienced Driver

Posts: 1028

Joined Us:

8 years, 5 months ago

4 Photos

6 years ago

What year truck did you get? I had a 13 when I first started and had lots of problems with it

Kevin L.'s Comment

DT-12 Transmission - Page 1 (11)

Kevin L.

Scranton, PA

Rookie Solo Driver

Posts: 117

Joined Us:

6 years, 6 months ago

5 Photos

6 years ago

CT,They gave me a 2018 with under 77k on it. It has a few light scratches on the passenger side.

DT-12 Transmission - Page 1 (12)DT-12 Transmission - Page 1 (13)DT-12 Transmission - Page 1 (14)

Page 1 of 1

Return To General CategoryTrucker's Forum Homepage

New Reply:

New! Check out our help videos for a better understanding of our forum features

Bold

Italic

Underline

Quote

Photo

Link

Smiley

Links On TruckingTruth

Done

DT-12 Transmission - Page 1 (15)DT-12 Transmission - Page 1 (16)DT-12 Transmission - Page 1 (17)DT-12 Transmission - Page 1 (18)DT-12 Transmission - Page 1 (19)DT-12 Transmission - Page 1 (20)DT-12 Transmission - Page 1 (21)DT-12 Transmission - Page 1 (22)DT-12 Transmission - Page 1 (23)DT-12 Transmission - Page 1 (24)DT-12 Transmission - Page 1 (25)DT-12 Transmission - Page 1 (26)DT-12 Transmission - Page 1 (27)DT-12 Transmission - Page 1 (28)DT-12 Transmission - Page 1 (29)DT-12 Transmission - Page 1 (30)DT-12 Transmission - Page 1 (31)

Done


0 characters so far - 5,500 maximum allowed.

Notify Me Of New CommentsSubmitPreview

Preview:

Submit

Cancel

DT-12 Transmission - Page 1 (2024)
Top Articles
Latest Posts
Article information

Author: Lilliana Bartoletti

Last Updated:

Views: 5755

Rating: 4.2 / 5 (73 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Lilliana Bartoletti

Birthday: 1999-11-18

Address: 58866 Tricia Spurs, North Melvinberg, HI 91346-3774

Phone: +50616620367928

Job: Real-Estate Liaison

Hobby: Graffiti, Astronomy, Handball, Magic, Origami, Fashion, Foreign language learning

Introduction: My name is Lilliana Bartoletti, I am a adventurous, pleasant, shiny, beautiful, handsome, zealous, tasty person who loves writing and wants to share my knowledge and understanding with you.