alert to vibration and logging open/close

I am using an arduino uno, sw-420 vibration sensor, Gikfun MC-38 Wired Door Sensor Magnetic Switch for Arduino EK1656, and a data logging shield ada1141. I am open to using other hardware if need be.

I need the sw-420 to detect a vibration and send that information to the arduino. Upon the vibration reaching a set threshold of magnitude I need an alert message to be displayed and an led to blink continually until reset.

The magnetic door sensor will be mounted to a door. I need to log each cycle of open/close and send an alert message and blink an led when a programmed number of cycles is reached. I would like to be able to set messages to be displayed at several different cycle counts.

Wanting to know the feasibility of this with the hardware I'm using and my best route for obtaining a sketch to accomplish this.

I have virtually no programming knowledge beyond cutting and pasting code so will need to obtain from outside source.

Thanks for any info.

The state change detection example in the IDE examples (File, Examples, Digital) will help with detecting and counting switch activations. For the others, look for libraries for them. Often the libraries will come with example code to get you started.
Edit: I found the vibration sensor. It has a digital output that changes when a set (by pot) amplitude is exceeded. The state change can be used for that as well.
The blink without delay example shows how to do timing without bocking (tying up the processor for nothing).