- Expérimentations sur l’écran à LED 12 x 8
- Expérimentations des liens réseaux Internet





- #include « Arduino_LED_Matrix.h »
- ArduinoLEDMatrix matrix;
- void setup()
- {
- matrix.begin();
- byte frame[8][12] =
- {
- { 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0 },
- { 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0 },
- { 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0 },
- { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 },
- { 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0 },
- { 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0 },
- { 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0 },
- { 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0 }
- };
- matrix.renderBitmap(frame, 8, 12);
Bluetooth
Bluetooth BLE devices use the Generic Attributes Profile (GATT) which defines the way that
two BLE devices can exchange data.
GATT is a hierarchical data structure.


Unfortunately, at the time of drafting this book the Radio Module (e.g., Bluetooth
hardware) on the Arduino Uno R4 WiFi development board needed a firmware
update to version 0.2.0 before Bluetooth could be used.
Arduino R4 WiFi+ Raspberry Pi 400
Il demeure que les accessibilités technologiques pédagogiques sont plus que jamais accessibles et vraiment intéressantes!
De tester l’Arduino R4 a partir du Raspberry Pi 400 en environnement Linux dépasse tout ce qu’on pouvait expérimenter en 1985 à la maison à peu de frais!

Et d’expérimenter le résultat en débranchant le tout de l’ordinateur, ayant programme autonome ayant soi-même programmé le code et le rendre autonome en alimentation est vraiment satisfaisant!
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Et comme autre expérimentation, de programmer l’Arduino en mode Serveur, de le pouvoir contrôler via un interface Web la lampe a été une expérience qui s’annonce pleine de potentiel!

