Mbed Client sample for GR-LYCHEE where ZXing is incorporated.
Dependencies: DisplayApp AsciiFont
Fork of GR-PEACH_mbed-os-client-ZXingSample by
Overview
This sample program shows how to use mbed Client together with ZXing which is an open-source, multi-format 1D/2D barcode image processing library. For more info on ZXing, please refer to https://github.com/zxing/zxing.
Required hardware
- GR-LYCHEE ( https://developer.mbed.org/platforms/Renesas-GR-LYCHEE/ )
Application setup
- Select the connection type. For details, please refer to the following wiki:
https://os.mbed.com/users/1050186/code/GR-LYCHEE_mbed-os-client-ZXingSample/wiki/Connection-type. - Set the client credentials. For details, please refer to the following wiki:
https://os.mbed.com/users/1050186/code/GR-LYCHEE_mbed-os-client-ZXingSample/wiki/Client-credentials. - Change Wifi settings. For details, please refer to the following wiki:
https://os.mbed.com/users/1050186/code/GR-LYCHEE_mbed-os-client-ZXingSample/wiki/Wifi-settings.
Building the example
To build this example:
- Import this example onto mbed Compiler.
- Configure the example in accordance with Application setup.
- Compile the example on mbed Compiler and download the resultant binary file.
- Plug the micro-USB cable into the OpenSDA port which lies on the next to the RESET button.
- Copy the binary previously downloaded to your PC to GR-LYCHEE to flash this example. When the copy is successfully completed, the board is ready to work.
- Press the RESET button on the board to run the example.
- For verification, please refer to the following wiki:
https://os.mbed.com/users/1050186/code/GR-LYCHEE_mbed-os-client-ZXingSample/wiki/Monitoring-the-application.
Application resources
This example exposes four resources listed below:
- 3202/0/5700. Decode result of barcode data input from camera (GET).
- 3201/0/5850. Blink function, blinks LED when executed (POST).
- 3201/0/5853. Blink pattern, used by the blink function to determine how to blink. In the format of 1000:500:1000:500:1000:500 (PUT).
- 3201/0/5855. Blink color, used by the blink function. Any of green, yellow, orange and red is acceptable (PUT).
Revision 21:ac3a0d5b2c5d, committed 2018-12-13
- Comitter:
- 1050186
- Date:
- Thu Dec 13 06:59:14 2018 +0000
- Parent:
- 20:d4695f4ddc8d
- Child:
- 22:a3cd35c5cff0
- Commit message:
- Modify regular blink's color.
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Thu Dec 13 05:50:25 2018 +0000
+++ b/main.cpp Thu Dec 13 06:59:14 2018 +0000
@@ -73,6 +73,7 @@
#define RED_LED (LED1)
#define GREEN_LED (LED2)
#define BLUE_LED (LED3)
+#define USER_LED (LED4)
#define LED_ON (1)
#elif TARGET_GR_LYCHEE
#define GREEN_LED (LED1)
@@ -93,7 +94,10 @@
// Status indication
DigitalOut red_led(RED_LED);
DigitalOut green_led(GREEN_LED);
-#ifdef TARGET_GR_LYCHEE
+#ifdef TARGET_RZ_A1H
+DigitalOut blue_led(BLUE_LED);
+DigitalOut user_led(USER_LED);
+#elif TARGET_GR_LYCHEE
DigitalOut yellow_led(YELLOW_LED);
DigitalOut orange_led(ORANGE_LED);
#else
@@ -102,8 +106,8 @@
Ticker status_ticker;
void blinky() {
-#ifdef TARGET_GR_LYCHEE
- orange_led = !orange_led;
+#ifdef TARGET_RZ_A1H
+ user_led = !user_led;
#else
green_led = !green_led;
#endif
