This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Bienvenido, Invitado
Tienes que registrarte para poder participar en nuestro foro.

Nombre de usuario
  

Contraseña
  





Estadísticas del foro
» Miembros: 16,353
» Último miembro: umuewadekuqub
» Temas del foro: 11,809
» Mensajes del foro: 115,464

Estadísticas totales

Últimos temas
Cortocircuito en hotend A...
Foro: General
Último mensaje por: Simemart
Hace 3 horas
» Respuestas: 4
» Vistas: 0
Cambiar drivers A4988 por...
Foro: Firmware y Software
Último mensaje por: Simemart
Hace 3 horas
» Respuestas: 54
» Vistas: 0
problemas en el inicio co...
Foro: General
Último mensaje por: Simemart
Ayer, 09:54 AM
» Respuestas: 10
» Vistas: 287
Ender 3 Pro adaptada a ki...
Foro: Laser CNC
Último mensaje por: JOSELUIS54
07-05-2024, 08:58 PM
» Respuestas: 2
» Vistas: 0
La Artillery X1 nunca alc...
Foro: Artillery
Último mensaje por: Simemart
07-05-2024, 04:19 PM
» Respuestas: 39
» Vistas: 0
Problema de conexión Lase...
Foro: Laser CNC
Último mensaje por: Carlost
07-05-2024, 03:10 AM
» Respuestas: 15
» Vistas: 8,136





















 
  HC 05 multi-user ??
Enviado por: John Tovar - 10-02-2017, 10:59 PM - Foro: Arduino - Respuestas (2)

En el momento estoy realizando un proceso de automatización con un hc 05 y un arduino uno, para encender unos leds; la pregunta es que me gustaria saber si puedo controlar este modulo con diferentes dispositivos (moviles, tablets, pc, etc) al mismo tiempo.
En caso de no ser asi que dispositivo me podria servir ???


  Ayuda sensor BL touch
Enviado por: Mrnice31 - 10-02-2017, 06:18 PM - Foro: Electrónica - Respuestas (1)

Nuenas tardes, os comento un problema que me esta dando un terrible dolor de cabeza... estoy intentando montar un sensor bl touch, sobre una placa lionheart pro, el problema surge a la hora de compilar, hago las modificaciones pertinentes en el codigo pero me aparece un error de sketch demasiado grande 124.124 bytes de un maximo de 122.048.
Lo que he modificado en el codigo es:
-const bool Z_MIN_ENDSTOP_INVERTING = false
-#define ENABLE_AUTO_BED_LEVELING // Delete the comment to enable (remove // at the start of the line)

//#define Z_PROBE_REPEATABILITY_TEST  // If not commented out, Z-Probe Repeatability test will be included if Auto Bed Leveling is Enabled.



#ifdef ENABLE_AUTO_BED_LEVELING



  // There are 2 different ways to specify probing locations

  //

  // - "grid" mode

  //   Probe several points in a rectangular grid.

  //   You specify the rectangle and the density of sample points.

  //   This mode is preferred because there are more measurements.

  //

  // - "3-point" mode

  //   Probe 3 arbitrary points on the bed (that aren't colinear)

  //   You specify the XY coordinates of all 3 points.



  // Enable this to sample the bed in a grid (least squares solution)

  // Note: this feature generates 10KB extra code size

  #define AUTO_BED_LEVELING_GRID



  #ifdef AUTO_BED_LEVELING_GRID



    #define LEFT_PROBE_BED_POSITION 40 //SAG20150811

    #define RIGHT_PROBE_BED_POSITION 160

    #define FRONT_PROBE_BED_POSITION 40

    #define BACK_PROBE_BED_POSITION 260



    #define MIN_PROBE_EDGE 10 // The probe square sides can be no smaller than this



    // Set the number of grid points per dimension

    // You probably don't need more than 3 (squared=9)

    #define AUTO_BED_LEVELING_GRID_POINTS 5



  #else  // !AUTO_BED_LEVELING_GRID



      // Arbitrary points to probe. A simple cross-product

      // is used to estimate the plane of the bed.

      #define ABL_PROBE_PT_1_X 15

      #define ABL_PROBE_PT_1_Y 180

      #define ABL_PROBE_PT_2_X 15

      #define ABL_PROBE_PT_2_Y 20

      #define ABL_PROBE_PT_3_X 140 //SAG20150811

      #define ABL_PROBE_PT_3_Y 20



  #endif // AUTO_BED_LEVELING_GRID



  // Offsets to the probe relative to the extruder tip (Hotend - Probe)

  // X and Y offsets must be integers //SAG20150811

  #define X_PROBE_OFFSET_FROM_EXTRUDER 39     // Probe on: -left  +right

  #define Y_PROBE_OFFSET_FROM_EXTRUDER 0     // Probe on: -front +behind

  #define Z_PROBE_OFFSET_FROM_EXTRUDER 0  // -below (always!)



  //SAG20150811    

  #define Z_RAISE_BEFORE_HOMING 2       // (in mm) Raise Z before homing (G28) for Probe Clearance.

                                        // Be sure you have this distance over your Z_MAX_POS in case



  #define XY_TRAVEL_SPEED 8000         // X and Y axis travel speed between probes, in mm/min



  //SAG20150811

  #define Z_RAISE_BEFORE_PROBING 10   //How much the extruder will be raised before traveling to the first probing point.

  #define Z_RAISE_BETWEEN_PROBINGS 5  //How much the extruder will be raised when traveling from between next probing points

  #define Z_RAISE_AFTER_PROBING 10    //How much the extruder will be raised after the last probing point.
Aqui he añadido mis offsets y demás.

-// Number of servos

//
// If you select a configuration below, this will receive a default value and does not need to be set manually
// set it manually if you have more servos than extruders and wish to manually control some
// leaving it undefined or defining as 0 will disable the servo subsystem
// If unsure, leave commented / disabled
//
#define NUM_SERVOS 1 // Servo index starts with 0 for M280 command //SAG20150811

// Servo Endstops
//
// This allows for servo actuated endstops, primary usage is for the Z Axis to eliminate calibration or bed height changes.
// Use M851 to set the z-probe vertical offset from the nozzle. Store that setting with M500.
//
#define SERVO_ENDSTOPS {-1, -1, 0} // Servo index for X, Y, Z. Disable with -1
#define SERVO_ENDSTOP_ANGLES {0,0, 0,0, 10,90} // X,Y,Z Axis Extend and Retract angles.
Y aqui he activado el servo.

La duda me surge si ademas de estas modificaciones tengo que tocar el archivo pin.h.

Si algun alma caritativa me ayudara se lo agradeceria enormemente, ya que en tema de programacion estoy bastante verde.
Gracias.



  [PROMOCIÓN] Filamento ABS PLUS 17€ Portes gratis a partir 70€pedido
Enviado por: 3dcpi - 10-02-2017, 03:52 PM - Foro: Tiendas colaboradoras - Sin respuestas

[/url]
Hola a tod@s 

Portes Gratis  a partir de 70 € (sin iva) solo península,
Bajamos los precios del ABS PLUS de 1.75 y  3.00 mm. a 17€/kg

[Imagen: ABS_17.jpg]



Recordar que además y como siempre  por ser de SPAINLABS tenéis un 5% adicional introduciendo el código “SoyVIP” al realizar vuestra compra .


Saludos….y como siempre MUCHAS GRACIAS por seguir confiando en nosotros. 

Equipo 3DCPI
Manel LLera         3dcpi@3dcpi.com

http://www.3dcpi.com/es/
[url=http://www.3dcpi.com/es/]


  Open Day Viernes 17 Febrero 2017
Enviado por: 3dcpi - 10-02-2017, 02:01 PM - Foro: Eventos - Sin respuestas

Coste: Gratuito
Fecha de inicio: Viernes, 17 Febrero 2017
Duración: 17/02/2017 de 10.00 a 16.00 hrs
Dónde: Ctra de Terrassa 210, 08191, Rubí (Barcelona)

Open Day -  Jornada de puertas abiertas
3DCPI te invita a conocer las Impresoras 3D de gran formato , y nuevos Filamentos 3D 
El próximo viernes 17 de Febrero de 2017 de 10.30 a 16.00 hrs
Ctra de Terrassa, 210 Rubí (Barcelona)
Invitación extensible a  sector industrial,  fablabs , Makers, Centros Educativos.
Ven a buscar muestras de filamento y a disfutar de las muestras impresas de gran formato. 

Demostración de nuevo filamento water soluble
Te invitamos a que vengas a nuestra exposición , veas en que te podemos ayudar en el campo de 3D, y nos expliques tus inquietudes.


Ctra de Terrassa, 210 Rubí (Barcelona)
Os esperamos.


[Imagen: 1503402363.jpg]




Un cordial saludo, 
Equipo de 3DCPI


Manel LLera   664 393 443 
Comercial 


  Acrylic 3DCSTAR P802-MHS
Enviado por: Anakin - 10-02-2017, 10:17 AM - Foro: Impresoras - Respuestas (4)

¿Alguien tiene esta impresora y puede darnos su opinión?

En gearbest hay problemas de stock con la Anet A8 y no se si esperar o p¡llarme esta que hay en Stock en España.

No se si habrá mucha diferencia con la Anet. He visto que la placa electrónica es diferente, pero no se si es mejor o no.

[Imagen: 20161128152021_63996.jpg]