Tuesday, May 18, 2010

Need to automate manual work

Father gets 2 more workers. We need to automate mechanical work if we want to reduce our worker. We need to go high if we want to reduce our space use.


Yong54321
Developer
Print check for free!

Saturday, February 13, 2010

Adding 2 relays now

Just got it done for 2 relay for a serial port on 4 and 7 port. Hope to run an alert for order and another for work time.

The man uses lot of experience to do it within 2 hours. If I done, I will easily take 3 days. It costs $50. I am grateful and wish him a happy Chinese new year.

I meet up ah meng, tell him about the goal. Show him the wireless range. He is going to do it after the new year.

My dealing with Yuwei, tell me her potential of sticking with her boyfriend. Typical of young girl. It also show her hidden motive of telling after receiving the bonus. Her guilt of paid holiday. It seems she did her work well to chase payment. Her good memory. And it shows how dependable it is for Sally. Someone to depend on doing the job.


Thursday, February 4, 2010

My solid state relay


Toshiba
5v to control 230v ac
S$18


Friday, January 29, 2010

2 price for a customer


Depending on the date start of the project, a new price. It is a famous issue for sap erp system. My invoice will be difficult.

Working on it now!

1 worksite only 1 quote.
If no quote, use latest quote.
If got quote, use the quote.



Monday, January 25, 2010

Photos of my computer DIY USB relay
































The relay is used in the ordering system similar to mac Donald in Singapore. Once customer order is entered into the system via browser form, the alarm and flash goes off for 7 seconds. The LCD will update the latest order for packing and delivery. Once the order is delivery, notified by enter the vehicle number, the order disappear from the screen.

The purpose is to create a direction for team member to work together without much supervision.

Photos of my computer control USB relay

















The relay is used in the ordering system similar to mac Donald in Singapore. Once customer order is entered into the system via browser form, the alarm and flash goes off for 7 seconds. The LCD will update the latest order for packing and delivery. Once the order is delivery, notified by enter the vehicle number, the order disappear from the screen.

The purpose is to create a direction for team member to work together without much supervision.

My serial port program code for the usb relay

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO.Ports;

namespace ConsoleApplication1
{
class Program
{
static SerialPort _serialPort;

static void Main(string[] args)
{

try
{
_serialPort = new SerialPort("COM4");
_serialPort.DtrEnable = true;
_serialPort.Open();

Console.Write(_serialPort.DtrEnable);
Console.Write(_serialPort.BaudRate);
Console.Write(_serialPort.RtsEnable);

DateTime endTime = DateTime.Now.AddSeconds(7);
while (endTime > DateTime.Now)
{
// Process loop
_serialPort.WriteLine("");
}

Console.Write("Port Closing...");
_serialPort.DtrEnable = false;
_serialPort.Close();
}

catch (Exception ex)
{
Console.Write(ex.Message);
}


}


}
}