RF433MHz Shield - AZDelivery

Hello everyone

I wanted to try the transmitter-example file of the above mentionned module. The sketch calls the library VirtualWire.h. This library refers to another library: wiring.h. While compiling the sketch Arduino ide complained not to be able to find the wiring.h file. After doing some research I found out that wiring.h doesn't seem to exist anymore. I had a look in the ide libraries and found wire.h. I then changed the statement wiring.h to wire.h. While compiling the sketch I still received the same error message:

C:\Users\moser\Documents\Arduino\libraries\AZ_RF433Mhz-master/VirtualWire.h:14:20: fatal error: wiring.h: No such file or directory

compilation terminated.

Using library AZ_RF433Mhz-master in folder: C:\Users\moser\Documents\Arduino\libraries\AZ_RF433Mhz-master (legacy)
exit status 1
Error compiling for board Arduino/Genuino Uno.

Can anyone tell me what would help with this situation.

Thanks alot!

moses

Update (20.01.2019; 17:47): I downloaded another library, compilation successful, test didn't work so far. I try some more.

I looked at the file and found this:

#if defined(ARDUINO)
#if ARDUINO >= 100
#include <Arduino.h>
#else
#include <wiring.h>
#endif

.

What type of Arduino did you specify?

Paul