LED

Dependencies:   mbed arrc_mbed

Files at this revision

API Documentation at this revision

Comitter:
asumamatsumura
Date:
Fri Mar 11 00:47:39 2022 +0000
Commit message:
LED;

Changed in this revision

arrc_mbed.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/arrc_mbed.lib	Fri Mar 11 00:47:39 2022 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/TanakaRobo/code/arrc_mbed/#77c13e86ad12
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Fri Mar 11 00:47:39 2022 +0000
@@ -0,0 +1,14 @@
+#include "neopixel.h"
+#include "mbed.h"
+NeoPixelOut npx(PA_6,7);
+int main(){
+    
+    
+    for(int i = 0; i < npx.numPixels(); i++){
+        npx.global_scale = 0.05f;
+        npx.normalize = false;
+        npx.setPixelColor(i,0xFFFFFF);
+ }
+         npx.show();
+
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Fri Mar 11 00:47:39 2022 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400
\ No newline at end of file