Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: EthernetInterface LM75B mbed-rtos mbed
led.h@4:7906049f6cca, 2018-03-16 (annotated)
- Committer:
- RobinMechele
- Date:
- Fri Mar 16 16:31:32 2018 +0000
- Revision:
- 4:7906049f6cca
- Parent:
- 3:fbf3c92f10ee
- Child:
- 6:4f13276fd1e2
comments bij de led gezet (h_file)
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| RobinMechele | 1:db9b9bec0133 | 1 | #ifndef led_h |
| RobinMechele | 1:db9b9bec0133 | 2 | #define led_h |
| RobinMechele | 1:db9b9bec0133 | 3 | #include "mbed.h" |
| RobinMechele | 1:db9b9bec0133 | 4 | |
| RobinMechele | 1:db9b9bec0133 | 5 | class Led |
| RobinMechele | 1:db9b9bec0133 | 6 | { |
| RobinMechele | 1:db9b9bec0133 | 7 | public: |
| RobinMechele | 4:7906049f6cca | 8 | Led(); //Constructor |
| RobinMechele | 4:7906049f6cca | 9 | /** |
| RobinMechele | 4:7906049f6cca | 10 | * @param color char array |
| RobinMechele | 4:7906049f6cca | 11 | * |
| RobinMechele | 4:7906049f6cca | 12 | * Deze methode zal het kleur van je led instellen. |
| RobinMechele | 4:7906049f6cca | 13 | * Je geeft een character array mee, en de methode zal dan een 0 of een 1 terugsturen. |
| RobinMechele | 4:7906049f6cca | 14 | * (0 = succes, 1 = fail) Dit kan je dan doorgeven aan de slave om het juiste antwoord terug te sturen naar de master. |
| RobinMechele | 4:7906049f6cca | 15 | */ |
| RobinMechele | 3:fbf3c92f10ee | 16 | int setColor(char*); |
| RobinMechele | 1:db9b9bec0133 | 17 | }; |
| RobinMechele | 1:db9b9bec0133 | 18 | |
| RobinMechele | 1:db9b9bec0133 | 19 | #endif |