eccornelsen Posted March 20, 2019 at 08:28 AM Posted March 20, 2019 at 08:28 AM Hi there, I'm interested in getting started in using Tinkerforge. What's a good simple system to start with and to be programmed in C++? Any advice? Thanks, Erik Quote
borg Posted March 20, 2019 at 08:37 AM Posted March 20, 2019 at 08:37 AM Do you have any idea for a project or specific interest? Something easy to start with is always the weather stations. You can start with calling getters to get the measurements from the sensors and print then to the console. From there you can go anywhere (store data in a database, draw graphs, etc). Quote
eccornelsen Posted March 20, 2019 at 02:10 PM Author Posted March 20, 2019 at 02:10 PM thanks borg, I would like to start with a very simple application programmed in C++ and using the Tinkerforge Hardware and Software. What are the requirements in terms of Hardware and Software? Quote
borg Posted March 20, 2019 at 03:50 PM Posted March 20, 2019 at 03:50 PM In terms of software you need to download the Brick Daemon, Brick Viewer and C API Bindings. You can get all of them here: https://www.tinkerforge.com/en/doc/Downloads.html To get started with the C Bindings you can take a look here: https://www.tinkerforge.com/en/doc/Software/API_Bindings_C.html In terms of hardware it obviously depends what you want to do. The absolute minimum that does something useful and is easy to understand would probably be a Master Brick together with a Temperature Bricklet 2.0. Hardware wise you need: * Mini USB cable * Master Brick * Bricklet cable (7p-10p) * Temperature Bricklet 2.0 Master Brick: https://www.tinkerforge.com/en/shop/bricks/master-brick.html Temperature Bricklet 2.0: https://www.tinkerforge.com/en/shop/bricklets/sensors/temperature-v2-bricklet.html You can pick the suitable cables as options in the shop. To get started, you connect the Bricklet to the Brick with the Bricklet cable and the Brick to your PC with the USB cable. Now you can view the temperature in Brick Viewer and use the C Bindings to read out the temperature in C++. Quote
eccornelsen Posted March 21, 2019 at 10:47 AM Author Posted March 21, 2019 at 10:47 AM Thanks borg, I'll have a look at these items. If we would like to integrate also a Wi-fi module on this system, what would be the extra requirements? Kind regards, Quote
borg Posted March 21, 2019 at 11:30 AM Posted March 21, 2019 at 11:30 AM You need an additional WIFI Extension 2.0 and a USB Power Supply. Quote
eccornelsen Posted March 28, 2019 at 02:48 PM Author Posted March 28, 2019 at 02:48 PM Hi borg, thanks for the feedback. I got the parts and connected them together. In the Brick viewer I can see the live Temperature evolution over the time. I'm new to C++, how can I use the binding functions that you mentioned? Do I have to use the Makefile? I can compile the code but there's an error when I try to link (build) it. thanks in advance, Erik Quote
borg Posted March 28, 2019 at 02:51 PM Posted March 28, 2019 at 02:51 PM You don't have to use a Makefile. Which operating system and which compiler/IDE do you use? Quote
eccornelsen Posted March 28, 2019 at 03:06 PM Author Posted March 28, 2019 at 03:06 PM OS: Windows 7 - 64 bit IDE: Geany 1.34.1 (compiler GCC version 7.3.0) Quote
borg Posted March 28, 2019 at 03:12 PM Posted March 28, 2019 at 03:12 PM On Windows with GCC you can use the command line to compile one of the examples, see here: https://www.tinkerforge.com/en/doc/Software/API_Bindings_C.html#gcc Don't forget to change the UID placeholder in the example to the UID of your Bricklet. Quote
eccornelsen Posted March 29, 2019 at 08:34 AM Author Posted March 29, 2019 at 08:34 AM thanks borg, I followed the instructions that you suggested and it's working now. I've created a project folder with the files below: 1) example_project/ -> ip_connection.cpp -> ip_connection.h -> brick_master.cpp -> brick_master.h -> bricklet_temperature_v2.cpp -> bricklet_temperature_v2.h -> example_callback.cpp 2) update #define UID with the UIDs from the brick and the bricklet. 3) from cmd: gcc -o example.exe *.cpp -lws2_32 -ladvapi32 Any ideas on the next steps? kind regards, Erik Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.