What's new

Closed Arduino Program for paper vending machine

Status
Not open for further replies.

master_hokage

Addict
Joined
Sep 28, 2016
Posts
16
Reaction
0
Points
70
patulong po sa program at connections ng arduino gagawa po kami ng paper vending machine.
 
wala po, nahihirapan po pati dun sa program sa coinslot kung paano maaactivate
Sa totoo lang madami code sa internet, bali ieedit mo lang sa desired nyong gamit. Assuming na paper vending machine so gagamit kayo ng stepper motor no, kailangan nyo lang maintidihan yung principle ng angle per steps nyan.
 
Sa totoo lang madami code sa internet, bali ieedit mo lang sa desired nyong gamit. Assuming na paper vending machine so gagamit kayo ng stepper motor no, kailangan nyo lang maintidihan yung principle ng angle per steps nyan.
paano po yung voltage output ng arduino? ang hina po kasi, ang gagamitin ko po kasi ay 12v motor ang hina po nung nilalabas na voltage ni arduino kaya ambagal po eh paano po kaya yun?
 
paano po yung voltage output ng arduino? ang hina po kasi, ang gagamitin ko po kasi ay 12v motor ang hina po nung nilalabas na voltage ni arduino kaya ambagal po eh paano po kaya yun?
I'specify mo kung anong uri ng motor ts. Usually may driver yan tapos may pin yun para sa power supply ng motor. Di mo talaga mapapagana yung motor ng direct from arduino, control lang talaga yun
 
I'specify mo kung anong uri ng motor ts. Usually may driver yan tapos may pin yun para sa power supply ng motor. Di mo talaga mapapagana yung motor ng direct from arduino, control lang talaga yun
hindi po ba pede pataasin output voltage ng mga pins dun? ang malakas lang po kasi dun ay yung vin na pin kaso po di macontrol kung kelan titigil
 
kasi po yung ni modify kong program is automatic na mag sesend ng sms so papaono ko po mauulit yung line ng program na mag dadagdag ng phone number
#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11); // RX, TX
void setup() {
Serial.begin(9600); // low enough
while (!Serial) {;}
Serial.println("hello!");
mySerial.begin(4800);
pinMode(2,INPUT_PULLUP);
while (digitalRead(2) == HIGH) {;}
mySerial.write("AT+CMGF=1"); mySerial.println();
delay(1000);
mySerial.write("AT+CMGS="); mySerial.write('"'); mySerial.write("09508859967"); mySerial.write('"'); mySerial.println();
delay(1000);
;mySerial.write("text massage..");
;mySerial.println(char(26));

}

papaano po mag add ng another phone number dito?
 
hindi po ba pede pataasin output voltage ng mga pins dun? ang malakas lang po kasi dun ay yung vin na pin kaso po di macontrol kung kelan titigil

I dont have yet much idea about Arduino(coz im in the reading stage as of this moment for my first programming/project for smart tag-based door lock for fun lang sa bording house ko) but I think you cant increase the digital output of the board coz it uses voltage regulator. You might need add-on for this. Additional board, drivers, relays and switching ON/OFF algorithm.
 
Status
Not open for further replies.

Similar threads

Back
Top