DVD stepper motor con L293d shield


1. Alimentar el shield con transformador de 9v 1amp (con una bateria no funciona!!!)
2. Quitar el jumper PWR del shield cuando se alimente con fuente externa.





Codigo:

#include <AFMotor.h>   
   
AF_Stepper motor(200,1  );


void setup() {
  Serial.begin(9600);         
  Serial.println("Stepper test!");

  motor.setSpeed(20);  // 20 rpm 
}

void loop() {
  motor.step(100, FORWARD, MICROSTEP);
  delay(500);
  motor.step(100, BACKWARD, MICROSTEP);
  delay(500);
}

Z Probe CNC

ATENCION!! funciona con la version 2.0 PLATFORM
https://winder.github.io/ugs_website/download/

Link directo de descarga: http://bit.ly/2XANF7B



1. Conectar el pin SCL del CNC Shield a la mecha del dremel.

2. Conectar el pin GND del CNC Shield a la placa PCB

3. En el Universal Gcode Sender, enviar estos comandos:

G38.2 Z-1 F1
G92 Z 0
G00 Z0.0787

G38. Z-1 : Baja hasta encontrar el z probe
G92 Z 0 : Le indica que la posicion a la que llego (cuando hizo contacto con el Z Probe) es el cero
Z.05 : Sube el eje z (esto es para evitar que este en contacto cuando se enciende el motor del dremel)




Fuente: https://www.youtube.com/watch?v=7l1nubetkro



AWS

Guia completa para desarrollar aplicacion web sin servidor
con AWS Lambda, Amazon API Gateway, Amazon S3, Amazon DynamoDB y Amazon Cognito

https://aws.amazon.com/es/getting-started/projects/build-serverless-web-app-lambda-apigateway-s3-dynamodb-cognito/

DynamoDB - Version descargable (para utilizarla sin conectarse!!)

https://docs.aws.amazon.com/es_es/amazondynamodb/latest/developerguide/DynamoDBLocal.DownloadingAndRunning.html

Ejecutarla con:
java -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar -sharedDb --port 8082

Para probarlo, con nodejs:
npm init
npm install aws-sdk

EJEMPLO COMPLETO CON NODEJS Y DYNAMO:
https://docs.aws.amazon.com/es_es/amazondynamodb/latest/developerguide/GettingStarted.NodeJs.html
*** A LOS EJEMPLOS CAMBIARLE EL PUERTO A 8082 ***
---------------------------------------------------------------------------------------------------------


Consola AWS
https://us-east-2.console.aws.amazon.com/cognito/home?region=us-east-2

LUEGO DE ENTRAR A LA CONSOLA, PARA VER LO QUE TIENE HAY QUE HACER CLICK EN LAS TRES RAYITAS A LA IZQUIERDA!!

Consola LAMBDA
https://console.aws.amazon.com/lambda/home?region=us-east-1#/functions

Actividad y costos:
https://console.aws.amazon.com/billing/home?#/

Capas disponibles con filtro
https://aws.amazon.com/es/free/?all-free-tier.sort-by=item.additionalFields.SortRank&all-free-tier.sort-order=asc

Calculadora AWS:
https://calculator.aws

https://calculator.s3.amazonaws.com/index.html#key=calc-MarketingWebSite-140324 
Tutoriales

Cómo crear aplicaciones web sin servidor con React y AWS Amplify
https://code.tutsplus.com/es/tutorials/how-to-build-serverless-web-applications-with-react-aws-amplify--cms-31732

Adding AWS Amplify to an Ionic 4 App
https://ionicframework.com/blog/adding-aws-amplify-to-an-ionic-4-app/

Setup amplify
https://aws-amplify.github.io/docs/js/start?platform=ionic

Building Ionic 4 apps with AWS Amplify [<==== este es el mejor!!]
OJO! en este instructivo falta instalar el cli de amplify:
npm install -g @aws-amplify/cli
https://aws-amplify.github.io/docs/js/tutorials/building-ionic-4-apps/