Making Changes

Hi All,
Why will Arduino not let me make changes when i am in Config H ?? When I try to change values it just pings at me

Mike

What do you mean by "Config H" ?

Sorry " Configurationh"

Mike

What do you mean by " Configurationh" ?

Where is this file located on your PC ?

Hi,
I go into Arduino and open Marlin for my 3D Delta printer to change settings I go into Configuration H, when I try to delete a value to change it, it will not let me just makes a ping sound. I have uninstalled twice to day but NO change.

Mike

Do you really have a file named "Configuration H" or is it perhaps "Configuration.H"

Either way, try using another editor such as the excellent Notepad++

Try this attachment it may be clearer

Mike

Right. So at least we now know the proper name of the file. It is Configuration.h

Can you please post it here, and use code tags when you do (</> top/left of the message editor window), to avoid the text being interpreted as HTML commands.

[quote]
[color=#7E7E7E]/* -*- c++ -*- */[/color]

[color=#7E7E7E]/*[/color]
[color=#7E7E7E]    Reprap firmware based on Sprinter and grbl.[/color]
[color=#7E7E7E] Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm[/color]

[color=#7E7E7E] This program is free software: you can redistribute it and/or modify[/color]
[color=#7E7E7E] it under the terms of the GNU General Public License as published by[/color]
[color=#7E7E7E] the Free Software Foundation, either version 3 of the License, or[/color]
[color=#7E7E7E] (at your option) any later version.[/color]

[color=#7E7E7E] This program is distributed in the hope that it will be useful,[/color]
[color=#7E7E7E] but WITHOUT ANY WARRANTY; without even the implied warranty of[/color]
[color=#7E7E7E] MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the[/color]
[color=#7E7E7E] GNU General Public License for more details.[/color]

[color=#7E7E7E] You should have received a copy of the GNU General Public License[/color]
[color=#7E7E7E] along with this program.  If not, see <http://www.gnu.org/licenses/>.[/color]
[color=#7E7E7E] */[/color]

[color=#7E7E7E]/*[/color]
[color=#7E7E7E] This firmware is a mashup between Sprinter and grbl.[/color]
[color=#7E7E7E]  (https://github.com/kliment/Sprinter)[/color]
[color=#7E7E7E]  (https://github.com/simen/grbl/tree)[/color]

[color=#7E7E7E] It has preliminary support for Matthew Roberts advance algorithm[/color]
[color=#7E7E7E]    http://reprap.org/pipermail/reprap-dev/2011-May/003323.html[/color]
[color=#7E7E7E] */[/color]

[color=#7E7E7E]/* All the implementation is done in *.cpp files to get better compatibility with avr-gcc without the Arduino IDE */[/color]
[color=#7E7E7E]/* Use this file to help the Arduino IDE find which Arduino libraries are needed and to keep documentation on GCode */[/color]

#include [color=#006699]"Configuration.h"[/color]
#include [color=#006699]"pins.h"[/color]

#ifdef ULTRA_LCD
  #if defined(LCD_I2C_TYPE_PCF8575)
    #include <[color=#CC6600]Wire[/color].h>
    #include <LiquidCrystal_I2C.h>
  #elif defined(LCD_I2C_TYPE_MCP23017) || defined(LCD_I2C_TYPE_MCP23008)
    #include <[color=#CC6600]Wire[/color].h>
    #include <LiquidTWI2.h>
  #elif defined(DOGLCD)
    #include <U8glib.h> [color=#7E7E7E]// library for graphics LCD by Oli Kraus (https://code.google.com/p/u8glib/)[/color]
  #else
    #include <[color=#CC6600]LiquidCrystal[/color].h> [color=#7E7E7E]// library for character LCD[/color]
  #endif
#endif

#if defined(DIGIPOTSS_PIN) && DIGIPOTSS_PIN > -1
#include <[color=#CC6600]SPI[/color].h>
#endif

#if defined(DIGIPOT_I2C)
  #include <[color=#CC6600]Wire[/color].h>
#endif

[/quote]

Thanks for trying, but I suspect that you used the "copy for forum" option, hence the HTML codes in the code.

Can you please edit your post and put a straightforward copy/paste between the code tags.