SORACOM UG 関西 座談会

>100 Views

January 13, 18

スライド概要

2018/1/13に開催した、SORACOM UG 関西の座談会(松岡分)。

profile-image

SeeedKKの中の人。Microsoft MVP for Internet of Things。

シェア

またはPlayer版

埋め込む »CMSなどでJSが使えない場合

(ダウンロード不可)

関連スライド

各ページのテキスト
1.

SORACOM UG 関西 座談会 2018/1/13 Takashi Matsuoka

2.

Takashi Matsuoka 2017~ MVP for Windows Development Joined the Seeed K.K. Developing the Wio LTE for Arduino

3.

Seeedって何やってるところ?

4.

Seeed株式会社は、中国の深圳(シンセン)にあるオープン ソースハードウェア企業、Seeedの日本法人です。製品開発に 加え、日本国内でのマーケティング活動を行っています 。

8.

電子部品を売っている会社?

10.

Seeed Chaihou Makerspace xfactory Fusion PCB/PCBA

14.

わたしの思うIoT課題

15.

https://www.slideshare.net/SORACOM/soracom-ug-2-iot/52

16.

大 中 小 インターネット 電波 センサー モノ 無線 通信 マイコン アクチュ エーター LED/LCD

17.
[beta]
#include <WioLTEforArduino.h>
#define LED_VALUE (10)
#define INTERVAL (50)
WioLTE Wio;
int Hue = 0;
void setup() {
...
}
void loop() {
...
Wio.LedSetRGB(r, g, b);
Hue += 10;
if (Hue >= 360) Hue = 0;
delay(INTERVAL);
}

18.
[beta]
wirish_time.cpp
void delay(unsigned long ms) {
uint32 i;
for (i = 0; i < ms; i++) {
delayMicroseconds(1000);
}
}
void delayMicroseconds(uint32 us)
{
delay_us(us);
}

delay.h
static inline void delay_us(uint32 us) {
us *= STM32_DELAY_US_MULT;

/* fudge for function call overhead
//us--;
asm volatile("
mov r0, %[us]
"1: subs r0, #1
"
bhi 1b
:
: [us] "r" (us)
: "r0");
}

*/
¥n¥t"
¥n¥t"
¥n¥t"