Slide 59
Slide 59 text
5. 互いにコミュニケーションをとる
59
FlutterでRoslibdartを使用してtopiclメッセージを購読(Sub)する方法
class Topic {
Topic({
required this.ros,
required this.name,
required this.type,
this.compression = 'none',
this.throttleRate = 0,
this.latch = false,
this.queueSize = 100,
this.queueLength = 0,
this.reconnectOnClose = true,
}) : assert(['png', 'cbor', 'none'].contains(compression)),
assert(throttleRate >= 0);
Topic
Class
イラストソース
: いらすとや
https://www.irasutoya.com/