CNCレーザー彫刻機の動作検証を終える
CNCレーザー彫刻機の動作検証を終える

seen from Malaysia

seen from United States

seen from United States

seen from United States
seen from United States
seen from India

seen from United States
seen from Tunisia

seen from Netherlands

seen from Malaysia

seen from United States
seen from Algeria

seen from United States
seen from United States
seen from United States

seen from Singapore
seen from United States
seen from Algeria
seen from China
seen from China
CNCレーザー彫刻機の動作検証を終える
CNCレーザー彫刻機の動作検証を終える
#lowvibes lofi #synth #adruino #granular #earlymorningvibes trying to not to be too noisey in the am
I'm in heaven right now. I have my #Elegoo kit as well as my book on #Adruino by #JeremyBlum and another book on #raspberrypi by #DerekMolloy. This is like a childhood dream coming true right now. I used to love taking electronics apart to see how they worked (never did lol). But I never thought I'd see the day that I'd be able to afford to do something this awesome. I'm starting from zero and I know absolutely nothing, so I'm looking forward to learning as much as I can. #ChildhoodDream #AspiringDeveloper #AspiringEngineer #Motivated #ChildhoodDream #AllHeart #AllSmiles ❤ (at Chattanooga, Tennessee)
Hi shnatko I would like to use single coloured LED instead of RGB ones. Do I have to change the circuit boards? What are the things that needs to be changed?
The circuit boards can be used with single color LEDs. The only change hardware-wise would be to use all 3 column current sink ICs for the single color LEDs. Meaning that rather than the LED controller boards being able to drive up to an 8x8 RGB array, it could drive an 8x24 single-color array.
On the software side there would be many changes needed. Instead of 3 possible LED colors with 8 degrees of brightness you’d only be dealing with 1. The interrupt routine to drive the LED control boards from the Arduino would need to be updated to remove 2 of the 3 LED brightness calculations. Any of the animations that blend multiple colors together would need to be changed. It could be done, but it would take some work on the software side.
Project 2(The Holiday Plant-Saver)
Block DiagramTravel plans for the holidays? Worried what will happen to your plants while you’re gone?
Design Proposal
People like buy plants, but many people don’t have time to water the plant, especially when they go out for travelling. And people don’t know when the plant is thirstily, when should water it.
This product will solve these problems.
Objective
Provides water based on your plant’s current moisture level Detects temperature and humidity levels Conveniently sized holder for desk plants Reservoir capable of watering even thirsty plants for up to two weeks.
Components
Arduino Uno X 1
Soil Moisture Sensor X 1
Temperature Sensor X 1
5 V Relay X 1
Pump X 1
7/16 Inch pipe X 1
10 K Potentiometer X 1
1602 LCD X 1
Jump Wire X 10+
2 L Bottle X 1
Plant X 1
Blue Foam X 1
Paperboard X 1
Block Diagram
Arduino Connection
The Circuit
Sketching
Processing
Prototype
Post
Code:
int pump_relay=13; #include <LiquidCrystal.h> LiquidCrystal lcd(12,11,10,5,4,3,2); void setup() { lcd.begin(16,2); lcd.print("Initialising....");
pinMode(pump_relay,OUTPUT); Serial.begin(9600); } void loop() { { //getting the voltage reading from the temperature sensor int reading = analogRead(A1); float voltage = reading * 5.0; voltage /= 1024.0; float temperatureC = (voltage - 0.5) * 100 ; Serial.print(temperatureC); Serial.println(" degrees C"); float temperatureF = (temperatureC * 9.0 / 5.0) + 32.0; Serial.print(temperatureF); Serial.println(" degrees F"); delay(1000); } int shidu= analogRead(A0); Serial.println(" Soil Moisture"); Serial.println(shidu); delay(1); { if (shidu >500){
digitalWrite(pump_relay,HIGH); delay(2000);
} { if (shidu<=500){ digitalWrite(pump_relay,LOW); } } } { lcd.clear(); lcd.print("Moisture:"); lcd.setCursor(10,0); lcd.print((float)analogRead(A0),1); lcd.setCursor(0,2); lcd.print("Temp:"); lcd.setCursor(5,2); lcd.print((float)analogRead(A1)*(5.0/1023.0*100),1); lcd.setCursor(9,2); lcd.print("F"); lcd.setCursor(11,2); lcd.print(((float)analogRead(A1)*(5.0/1023.0*100)-32)/1.8,1); lcd.setCursor(15,2); lcd.print("C"); } delay(1000);
}
So many parts...
LEGO MINDSTORMS
EEN KLEINE INTRODUCTIE IN DE WERELD VAN PROGRAMMEREN WAS GOED OM TE DOEN.
HET IS ZO ONTWORPEN DAT KINDEREN HET KUNNEN DUS DAT MAAKTE HET LAAGDREMPELIG OM MEE AAN DE SLAG TE GAAN.
TOCH VOELDE IK ME DOM OMDAT HET ME VEEL MOEITE KOST OM HET TE BEGRIJPEN EN LUKTE EEN AANTAL KEREN OOK NIET.
MAAR WANNEER HET WEL LUKTE OM IDEEËN UIT TE VOEREN VOELDE IK ME SPRINGLEVEND. DAAROM MOET IK NIET TE ONGEDULDIG ZIJN EN MILDER ZIJN MET MEZELF WANNEER IK IETS NIET BEGRIJP; DUS MEZELF DE RUIMTE GEVEN OM HET ALSNOG WEL TE KUNNEN BEGRIJPEN.
EEN KORTE BULLET MET WAT IK HEB GELEERD:
PROGRAMMEREN BESTAAT UIT SPELEN MET INPUT/VERWERKING/OUTPUT ZOALS BEWEGING, GELUID, LICHT ETC.
EEN ROBOT/COMPUTER KAN NIET INTERPRETEREN EN DAAROM MOET JE HET EXACT UITLEGGEN WAT JE WILT DOEN.
HET IS EEN RAZENDSNEL PROCES VAN TRIAL & ERROR WAARIN FOUTEN MAKEN LEUK LIJKT TE WORDEN.
Makers around the globe are building low-cost devices to monitor the environment, and with this hands-on guide, so can you. Through succinct tutorials, illustrations, and clear step-by-step instructions, you'll learn how to create gadgets for examini