Hallo,
der BNC3D ist ein 6DOF Roboterarm, den man ausdrucken kann in ABS.
https://www.bcn3d.com/bcn3d-moveo-th...g-robotic-arm/
Gruß Referent
Hallo,
der BNC3D ist ein 6DOF Roboterarm, den man ausdrucken kann in ABS.
https://www.bcn3d.com/bcn3d-moveo-th...g-robotic-arm/
Gruß Referent
Dann hätte ich eine Aufgabe für dich: Find mal heraus, welchen Payload der BNC3D tragen kann. Auf die Schnelle habe ich nichts gefunden.
Hey "Referent",
was ist denn aus Deiner angekündigten Cocktail-Maschine aus dem letzten Jahr geworden ?
An dem Projekt könnte man ja gut darstellen, ob man überhaupt das Durchhaltevermögen und Lernbereitschaft für so ein viel komplexeres (aktuelles) Projekt hat.
Andree-HB Hallo,
Da ist schon alles fertig an der Software und Hardware. Ich hatte mir vor 2 Monaten nen neuen 3D Drucker gekauft und Drucke die Teile jetzt über Winter aus und werde dann alles zusammenfügen.
Denn fertigen Automat werde ich hier natürlich vorstellen. Mache alles ganz in Ruhe , habe ja Zeit. Das ist ja meine erste Erfahrung mit Arduino.kann mal am WE ein paar Fotos machen, wie weit ich damit bin.
Back to Topic:
Angeblich soll er 3 kg tragen können und eine Ausladung von 65 cm+ haben.
Gruß Referent
Geändert von Referent (14.09.2021 um 21:33 Uhr)
Hallo Community ,
habe jetzt fast 3 Wochen flach gelegen wegen Krankheit. Jetzt geht mein Projekt , da der Herbst da ist (Cocktailmaschine) weiter voran. Diverse Teile drucken seit geraumer Zeit und ich bastel hier fleißig rum.
Nun habe ich ein Problem , das ich so nicht ganz lösen kann. Ich habe ein Arduino Nano mit 1,8 TFT und DS11 laufen . Das geht soweit . Nun möchte ich aber auch die Uhrzeit und ein 24 WS2812 LED-Ring noch zum laufen bringen. Der LED-Ring ist nicht wild , habe hier noch 3 Nanos liegen , kann den einzeln steuern. Nur die Uhrzeit und Datum sollen noch auf das Display. Uhr ist eine DS3231.
Kann mir da mal einer Helfen?
Gruß Referent
Hier der Sketch:
#include <SPI.h>
#include <TFT.h>
/*
Arduino TFT text example
This example demonstrates how to draw text on the
TFT with an Arduino.
This example code is in the public domain
Created 15 April 2013 by Scott Fitzgerald
http://arduino.cc/en/Tutorial/TFTDisplayText
Modded by Steve Spence of http://arduinotronics.blogspot.com
*/
// Pins SCLK and MOSI are fixed in hardware, and pin 10 (or 53)
// must be an output
#define sclk 13 // for MEGAs use pin 52
#define mosi 11 // for MEGAs use pin 51
#define cs 10 // for MEGAs you probably want this to be pin 53
#define dc 9
#define rst 8 // you can also connect this to the Arduino reset
// pin definition for the Leonardo
// #define cs 7
// #define dc 0
// #define rst 1
// create an instance of the library
TFT TFTscreen = TFT(cs, dc, rst);
// char array to print to the screen
char tempPrintout[6];
char humPrintout[6];
// Example testing sketch for various DHT humidity/temperature sensors
// Written by ladyada, public domain
// Fahrenheit conversion added by Steve Spence, http://arduinotronics.blogspot.com
#include "DHT.h" //https://learn.adafruit.com/dht/downloads
#define DHTPIN A0 // what pin we're connected to
// Uncomment whatever type you're using!
#define DHTTYPE DHT11 // DHT 11
//#define DHTTYPE DHT22 // DHT 22 (AM2302)
//#define DHTTYPE DHT21 // DHT 21 (AM2301)
// Connect pin + (middle) of the sensor to +5V
// Connect pin S (on the right) of the sensor to whatever your DHTPIN is
// Connect pin - (on the left) of the sensor to GROUND
// Connect 10k resistor between S and +
int cycleTime = 2000;
DHT dht(DHTPIN, DHTTYPE);
float h;
float t;
void setup() {
// Put this line at the beginning of every sketch that uses the GLCD:
TFTscreen.begin();
// clear the screen with a black background
TFTscreen.background(0, 0, 0);
// write the static text to the screen
// set the font color to white
TFTscreen.stroke(255,255,255);
// set the font size
TFTscreen.setTextSize(2);
// write the text to the top left corner of the screen
TFTscreen.text("Temperatur (C)",0,0);
// write the text to the top left corner of the screen
TFTscreen.text("Feuchte (%)",0,60);
// ste the font size very large for the loop
TFTscreen.setTextSize(4);
dht.begin();
}
void loop() {
// Read the value of the temp/humidity sensor on D2
// Reading temperature or humidity takes about 250 milliseconds!
// Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
h = dht.readHumidity();
t = dht.readTemperature();
//t = (t*1.+32; //C to F conversion
String tempVal = doubleToString(t, 2);
String humVal = doubleToString(h, 0);
// String sensorVal = String(1.234);
// convert the reading to a char array
tempVal.toCharArray(tempPrintout, 6);
humVal.toCharArray(humPrintout, 6);
// set the font color
TFTscreen.stroke(255,255,255);
// print the sensor value
TFTscreen.text(tempPrintout, 0, 25);
TFTscreen.text(humPrintout, 0, 85);
// wait for a moment
delay(cycleTime);
// erase the text you just wrote
TFTscreen.stroke(0,0,0);
TFTscreen.text(tempPrintout, 0, 25);
TFTscreen.text(humPrintout, 0, 85);
}
//Rounds down (via intermediary integer conversion truncation)
String doubleToString(double input,int decimalPlaces){
if(decimalPlaces!=0){
String string = String((int)(input*pow(10,decimalPlaces)));
if(abs(input)<1){
if(input>0)
string = "0"+string;
else if(input<0)
string = string.substring(0,1)+"0"+string.substring(1);
}
return string.substring(0,string.length()-decimalPlaces)+"."+string.substring(string.length( )-decimalPlaces);
}
else {
return String((int)input);
}
}
Geändert von Referent (12.10.2021 um 16:25 Uhr)
Hallo an alle,,
habe jetzt nach längerer Abwesenheit alle Teile für den Cocktailautomaten zusammen. Peristaltikpumpe war ohne Motorhalter , denn habe ich schnell selber konstruiert. Es ist alles vorhanden und geht jetzt langsam ans zusammenbauen. Der Sketch für die Uhr ist jetzt auch ohne Fehler nach längeren lesen und umschreiben. Nur bleibt mein Display weiß und ohne Anzeige , das aber später . Als Controllerunit benutze ich ein Mega und 3 Nano. Netzteil ist eins aus dem PC. Gehäuse ist eine Box mit Deckel vom schwedischen Möbelhaus. Werde höchstwahrscheinlich morgen mehrere Fotos machen und hochladen. Um mal ein groben Überblick zu bekommen. Es geht langsam , aber stetig , voran. Hoffe , habe kein verärgert , weil ich länger nicht da war.
Gruß Referent
Lesezeichen