Arduinoで無線通信を行うにはWi-FiモジュールやXbeeモジュール等無線通信モジュールをつなぎます。
これが意外と高いのですが、Espressif Systems のESP32 はとても低価格で且つ機能が豊富です。
開発ボードを使えば、それ単体でArduinoと同等以上のことができ、Wi-FiとBluetooth 通信が可能になります。
Espressif の開発ボードESP32-DevKitC を入手していろいろと試してみました。
目次
Espressif Systems 社
Espressif Systems (乐鑫科技)は2008年設立の中国の企業で、2019年に上海証券取引所の新興/ハイテク企業向け市場スター・マーケット(STAR、科創板)に上場しました。
STARマーケットは2019年7月22日開設の新市場でEspressifはその第一陣上場25社の中の一社です。
それまで主に米国メーカーが供給していたWi-fi通信等の半導体を低価格で供給するようになりました(外部記事)。
市場に流通している多くのWi-Fi機器にEspressifの通信チップが使われていると思われます。
自前の工場は持たないファブレス企業で、TMSC等で製造しているようです。
ESP32-DevKitC
ESP32のチップ、モジュール基板の状態では素人には取り扱いが難しいので、USBでつなぐとすぐに使える状態にしてくれている開発ボードを使います。
開発ボードも多数種類がありますが、Espressif製のESP32-DevKitCを使いました。
モジュールの種類
ESP32-DevKitC開発ボードに搭載されているモジュールの種類によって何種類かバージョンがあります。
- PSRAMの有無:カメラ等の大容量のデータを扱うときはあった方が良いかも。
- アンテナの種類:PCBアンテナはモジュール組み込みのアンテナでIPEXアンテナは外付けのアンテナを別に用意する必要があります。
- コア:シングルコアかデュアルコアか。
モジュール | PSRAM | アンテナ | コア | 技適 (2021.1時点) |
ESP32-WROOM-32E | 無し | PCB | dual | ○ |
ESP32-WROOM-32UE | 無し | IPEX | dual | × |
ESP32-WROOM-32D | 無し | PCB | dual | ○ |
ESP32-WROOM-32U | 無し | IPEX | dual | ○ |
ESP32-SOLO-1 | 無し | PCB | single | ○ |
ESP32-WROVER-E | 8MB | PCB | dual | ○ |
ESP32-WROVER-IE | 8MB | IPEX | dual | ○ |
脆弱性の問題
EspressifはモジュールのうちESP32-WROOM-32U/D はクローズし後継のESP32-WROOM-32E/UE にアップグレードするよう促しています。
これはESP32チップにハッキング可能な脆弱性が見つかり、対策を施した製品へと転換したためです。
この脆弱性はハッカーがESP32に物理的にアクセスすることが必要で、ネットからの攻撃だけではハッキングできません。 しかし流通過程で悪意のある業者がハッキングを仕掛けたり、公共の場にあるWiFi機器にハッキングをかけられたりする危険性があります。
とは言え、個人で遊んでいる分には問題が起きる事はないと思うので、旧タイプを使っても良いでしょう(私の手元にあるものも旧タイプ)。
技適
日本国内でW-Fi、Bluetooth 等の無線通信を行うには技術適合証明(技適)を取得している必要があります。
ESP32 の製品の中には技適が取られていないものもあり、これらの製品を入手して日本国内でWi-Fi、Bluetooth機能を使うことは違法になります(但し届け出をすることで短期間の実験に使用することが認められる特例制度があります)。
Espressif製のESP32-DevKitC搭載のモジュールは2021年1月の時点で私が確認した限りESP32-WROOM-32UE以外は技適が取られていました。
しかし製品ページの写真を見ると技適マークの入っていない製品もあります。 ESP32-WROOM-32E、ESP32-WROVER-E/IEは2020年に技適を取得していますので取得前の製品の写真が掲載されていると思われます。場合によっては購入しても刻印の無い取得前の在庫が届く可能性もあります。
他の開発ボード(ESP-32CAM等)には技適が取られていないモジュールが搭載されているものもあるので注意が必要です。
見分け方は製品に技適マークが刻印されているのでわかります。又は型式等が分かっていれば総務省のHPから検索することができます。
入手
国内では秋月電子やマルツオンライン、Amazon等で¥1,300程で入手することができます。
AliExpressではESP32-WROOM-32D/U搭載タイプであれば¥400程で、その他のタイプは2021年1月時点では¥1,200程で購入できます。
ESP32-WROOM-32Dが搭載されたESP32-DevKitC-32DをAliExpressで購入しました。
中国から購入した製品では良くある事ですが、ピンヘッダがぐにゃぐにゃに曲がってやってきました。
広告 | |||
開発環境の構築
開発環境の構築方法は検索すればあちこちに情報があるので今更ですが、私の環境(desktop PC + Windows10 Home)で行った作業を記します。
Arduino IDEを最新のバージョンにしておきます。 少なくともArduino IDE 1.8 以降が必要です。
- Arduino IDEを起動し、『ファイル』⇒『環境設定』で環境設定のウィンドウを開きます。

- [追加のボードマネージャのURL: ]の欄にEspressifのGitHubに記載の”Stable release link:”のURLをコピーして貼り付け『OK』をクリックします。


- 『ツール』⇒『ボード』⇒『ボードマネージャー』でボードマネージャーのウィンドウを開きます。
- 検索欄に ”esp32” と入力すると ”esp32 by Espressif Systems” が見つかります。ここにマウスポインタを当てると[インストール]のボタンが出ますのでクリックしてインストールします。暫くするとインストールが完了しますので[閉じる]ボタンを押します。



- 『ツール』⇒『ボード』と選択していくと『ESP32 Arduino』の項目ができていますので、そこから『ESP32 Dev Module』を選択します。
- 『ツール』を選択すると”ボード:”ESP32 Dev Module” ”の項目ができており、その下に各種設定が出来ています。

- シリアルポートの番号が変わっていると思うので、USB(マイクロUSB)でPC とESP32-DevKitCを接続し、赤のLEDが点灯し電源が入ったのを確認して、Arduino IDE から『ツール』⇒『シリアルポート』⇒『COM○』(○の数字は環境によって変わります)をクリックして✓を入れます。

これでPC側の設定は完了しました
配線方法
良く使われている5列のブレッドボードではESP32-DevKitCはそのま刺すと配線を取り出す穴が片側の1列を除いて隠れてしまい使い勝手が悪くなります。
他のブログ等ではブレッドボードを2つつなげる方法や、6列ブレッドボードを使う方法等が紹介されていますが、私が普段使っている精度の悪い中華製ブレッドボードとピンヘッダがぐにゃぐにゃになった開発ボードでは全てのピンをきれいに刺すことは難しいです。
ですのでメス-オスのジャンパーワイヤーを使ってブレッドボードに信号線をつなぐことにしました。

広告 | |||
ピン配置
ピン配置はこのリンク先に記載されています。利用可能なGPIOが19個(GPIO0, 1, 3, 6~11 は利用できない)等。
Lチカ
定番のLチカをやってみました。 手順はArduino でLチカを行うのとほぼ同じです。
配線
ブレッドボードにLEDと電流制限抵抗(220Ω)を載せ、次図のように配線しました。
LEDと電流制限抵抗をGPIOとGNDの間に直列に接続するだけです。GPIOは0, 1, 3, 6~11以外はどれを使っても構いません。


スケッチ
スケッチはArduino でLチカをするのと同じです。 GPIO の番号(一行目の”int led = 4;”の数字)だけ接続したGPIOの番号に合わせてスケッチします。
int led = 4;
void setup() {
pinMode(led, OUTPUT);
}
void loop() {
digitalWrite(led, HIGH);
delay(1000);
digitalWrite(led, LOW);
delay(1000);
}
書き込み
PCとESP32-DevKitCを接続し、 をクリックして書き込みます。LEDがチカチカ点滅しました。

Wi-Fi
せっかくWi-Fi機能があるのでWi-Fiを試してみました。
Wi-Fi環境があって、アクセスポイントのSSIDとパスワードが分かっている必要があります。
対応する規格は2.4GHz帯のIEEE 802.11b/g/nです。
スケッチ
サンプルスケッチを使って試してみました。
Arduino IDEから『ファイル』⇒『スケッチ例』⇒『WiFi』(”ESP32 Dev Module 用のスケッチ例”の下の方にあります)⇒『SimpleWiFiServer』を開きます。

30行目”yourssid”にアクセスポイントのSSIDを、31行目 “yourpasswd” をパスワードをに書き換えます。
38行目、105行目、108行目の”5”を使用するGPIOの番号に書き換えます。

実行
『ツール』⇒『シリアルモニタ』(Ctrl+Shift+M)でシリアルモニタを起動しておきます。
配線は上で作成したLED用の配線をそのまま使いました。
PCとESP32-DevKitCを接続し、をクリックして書き込みます。
上手くいくとシリアルモニタにアクセスポイントの名前とIPアドレスが表示されます。

同じアクセスポイントにつながっているPC(スマホでもタブレットでも)のブラウザーから表示されたIPアドレス(192.168.xxx.yyy : xxx , yyy は環境によって変わる)にアクセスします。
http://192.168.xxx.yyy/H ⇒ LED 点灯する。
http://192.168.xxx.yyy/L ⇒ LED 消灯する。
スマートフォン(Android)から操作してみました。

Bluetooth
Bluetoothも試してみました。
スケッチ
サンプルスケッチを使って試してみました。
Arduino IDEから『ファイル』⇒『スケッチ例』⇒『BluetoothSerial』⇒『SerialToSerialBT』を開きます。
サンプルスケッチはそのまま改変せずに使用しました。


書き込み
PCとESP32-DevKitCを接続し、シリアルモニタを起動しておいてからをクリックして書き込みます。
書き込みに成功するとシリアルモニタの最後に
The device started, now you can pair it with bluetooth!
とメッセージが表示されペアリング可能な状態になります。
ペアリング
今回はWindows10 のPC からペアリングしました(当然PCにBluetooth機能が内臓されているかアダプターが取り付けられている必要があります)。
Windows 画面の右下のインジケーター領域から”Bluetoothデバイス”を選んでクリック。

”Bluetoothデバイスの追加(A)”を選択してクリック。

”設定”画面が開くので”Bluetoothとその他のデバイス”の項目の”+ Bluetoothまたはその他のデバイスを追加する”をクリック。

”デバイスを追加する”画面が開くので”Bluetooth”を選択してクリック。

”ESP32test”を選択してクリック。

しばらくすると”デバイスの準備が整いました!”のメッセージが出るので”完了”をクリックして閉じます。

”設定”画面の”その他のデバイス”の項に”ESP32test ペアリング済み”と出ます。

接続
Arduino IDEから『ツール』⇒『シリアルポート:”COM○”』⇒と選択していくと、シリアルポートが増えています。
しかし2つ増えており、どちらにつなげばいいのか判断できませんでした。とりあえず両方とも試してみたところ片方(私の環境でCOM5)はエラー(送信しようとしたらフリーズした)になり、もう片方(COM4)でつながりました。

”Bluetooth設定”(”設定”画面”Bluetoothとその他のデバイス”項目の下方の”その他のBluetoothオプション”をクリックしたら開きます)のCOMポートタブを開いて見てみるとCOM4は方向が”発信”で名前が”ESP32test’ESP32SPP”、COM5が方向”着信”、名前”ESP32test”でした。
知識不足で意味が分かりませんが、とりあえず”発信”側を選択すれば良いかと。(’21.2.2追記:COMポート番号を調べる方法を書きました。)

シリアルモニタ
このスケッチはBluetoothシリアルで受信すると、その内容をUSBシリアルに送信し、USBシリアルで受信するとBluetoothシリアルに送るというものです。
しかしArduino IDEのシリアルモニタはどちらか一方しか見ることができません。
ですので、別プロセスでもう一つArduino IDEを立ち上げ、シリアルモニタでUSB接続のシリアルポート(私の環境ではCOM6)を見ました。
Arduino IDEを開いたまま、WindowsのArduino IDEのアイコンをダブルクリックすると新しいプロセスでArduino IDEが立ち上がります。”シリアルポート:”をUSB接続のシリアルポート(私の環境ではCOM6)に設定し、シリアルモニターを開きます。

送受信テスト
Bluetooth(COM4)から送信すると、USB(COM6)に送信内容が出力されました。
逆にUSB(COM6)から送信すると、Bluetooth(COM4)に送信内容が出力されました。

Lチカ
Bluetooth SerialのコマンドでLEDを点灯させてみました。
スケッチ
サンプルスケッチを次のように改変し、書き込みます。書き込みの際ポートを元(私の環境でCOM6)に戻すのを忘れないように。
#include "BluetoothSerial.h"
#if !defined(CONFIG_BT_ENABLED) || !defined(CONFIG_BLUEDROID_ENABLED)
#error Bluetooth is not enabled! Please run `make menuconfig` to and enable it
#endif
BluetoothSerial SerialBT;
int led = 4;
void setup() {
Serial.begin(115200);
SerialBT.begin("ESP32test"); //Bluetooth device name
Serial.println("The device started, now you can pair it with bluetooth!");
pinMode(led, OUTPUT);
}
void loop() {
if (SerialBT.available()) {
char ledSW = SerialBT.read(); //"1" to turn on the LED, "0" to turn off the LED
if (ledSW == '1'){
digitalWrite(led, HIGH);
SerialBT.write(ledSW);
}
if (ledSW == '0'){
digitalWrite(led, LOW);
SerialBT.write(ledSW);
}
}
delay(20);
}
実行
配線は上で作成したLED用の配線をそのまま使いました。
モバイルバッテリーでESP32-DevKitCを駆動させ、Bluetoothのシリアルモニタ(私の環境でCOM4)から”1”を送るとLEDが点灯、”0”を送るとLEDが消灯しました。
2023-07-16 at 14:00
Most beneficent modified games and applications notwithstanding Android are presented in the sections of our website. Still, in some cases there may be problems when downloading firm games. Towards case, the stiff interpretation of the software has not just been released as residents of some countries, or they are paid and do not in a irritation interpretation, made for the benefit of the exploratory purpose. Some categories of users can not download MOD games and programs in place of Android deserved to absence of above on the phone. These and many other problems can be by far solved, you need to download the imperative files to your live computer beforehand, and then send it to Android. Mods are add-ons inasmuch as games, which help to contrive more features and tools. Games suit not only more gripping, but also more technological. Thanks to mods on Android, the purchaser gets a big interest more than opponents, and the gameplay itself becomes more exciting. Mods eschew to escalating the au courant with of the game. Some variants are designed to get a larger solidify of options and tools during the game. Such a participant has a gargantuan advantage atop of opponents.
Some variants may amplify remodelled mini-games, or add geolocation. Sometimes the approach and origination of gameplay itself changes. Notwithstanding the functionality of each mod, they all put on strange emotions to the game.
Visit our social:
https://ok.ru/droiderbes/topic/156393859660656
https://ok.ru/group/54053144559728
https://t.co/zl2XB3jjlE
More links:
[url=https://lojaconstroi.com.br/produto/janela-de-correr-2-folhas/#comment-8186]Most adroitly modified games[/url] [url=https://landfrauen-malmsheim.de/index.php/component/kide/-/index.php">]Best modified games[/url] [url=https://nordiccommandopatrol.webs.com/apps/guestbook/]Best hack apps[/url] 22ffb71
2023-07-16 at 14:18
Интернет-магазин спецодежды оптом от производителя – магазин спецодежды рядом со мной на карте, спецодежда и средства индивидуальной защиты требуются во многих отраслях производства, сфере услуг и обслуживания, жкх, области охранных структур, пищевой промышленности, дорожных работ.
2023-07-16 at 14:49
Best onlіnе саsіno
Bіg bоnus аnd Frееsріns
Spоrt bеttіng аnd pоkеr
go now https://tinyurl.com/yjnfweu9
2023-07-16 at 15:53
Best modified games and applications for Android are presented in the sections of our website. After all, in some cases there may be problems when downloading firm games. On the side of example, the true interpretation of the software has not to the present time been released quest of residents of some countries, or they are paid and do not repress a conditional story, мейд on the side of the exploratory purpose. Some categories of users can not download MOD games and programs for Android due to absence of traffic on the phone. These and assorted other problems can be by far solved, you need to download the life-and-death files to your personal computer beforehand, and then send it to Android. Mods are add-ons because of games, which keep from to acquire more features and tools. Games fit not no greater than more fascinating, but also more technological. Thanks to mods on Android, the purchaser gets a large gain over opponents, and the gameplay itself becomes more exciting. Mods help to bourgeon the flatten out of the game. Some variants are designed to pick up a larger show off of options and tools during the game. Such a participant has a colossal advantage once more opponents.
Some variants may add latest mini-games, or supplement geolocation. Occasionally the mo = ‘modus operandi’ and generation of gameplay itself changes. Teeth of the functionality of each mod, they all put on new emotions to the game.
Visit our social:
https://t.co/nMQO2M3tcO
https://href.li/?https://droid-mobile.ru/logic/734-skachat-vzlomannuyu-gems-of-war-rpg-tri-v-ryad-mod-menyu-mod-apk-na-android.html
https://href.li/?https://droid-mobile.ru/dating/10734-skachat-meetville-dating-chat-meet-new-people-unlocked-rus-apk-na-android.html
Regard more:
[url=https://handmadebymammi.blogg.se/2014/august/vaska-till-toaletten.html]Most adroitly mod applications[/url] [url=http://sakiushijirushi.chu.jp/joyful/joyfulsakiushi.cgi]Most beneficent hack applications[/url] [url=http://solun.hu/component/k2/item/5-unde-omnis-iste-natus]Best modified apps[/url] 1_161a0
2023-07-16 at 16:02
lloyds pharmacy generic viagra online shopping for viagra [url=https://viagratopconnectt.com/]order pfizer viagra[/url] reviews online viagra sites over the counter viagra in stores
2023-07-16 at 17:57
Most beneficent modified games and applications representing Android are presented in the sections of our website. After all, in some cases there may be problems when downloading constant games. For case, the certified construct of the software has not yet been released quest of residents of some countries, or they are paid and do not contain a conditional story, made for the benefit of the exploratory purpose. Some categories of users can not download MOD games and programs quest of Android deserved to shortage of traffic on the phone. These and various other problems can be indisputably solved, you demand to download the life-and-death files to your live computer beforehand, and then send it to Android. Mods are add-ons because of games, which keep from to fit out more features and tools. Games fit not not more fascinating, but also more technological. Thanks to mods on Android, the operator gets a big advantage more than opponents, and the gameplay itself becomes more exciting. Mods refrain from to bourgeon the au courant with of the game. Some variants are designed to pick up a larger solidify of options and tools during the game. Such a participant has a gargantuan head start once more opponents.
Some variants may augment remodelled mini-games, or supplement geolocation. Occasionally the mo = ‘modus operandi’ and generation of gameplay itself changes. Despite the functionality of each mod, they all convey latest emotions to the game.
Visit our social:
https://ok.ru/droiderbes/topic/156365244873584
https://droidmobileru.tumblr.com/
https://href.li/?https://droid-mobile.ru/board/2900-skachat-vzlomannuyu-bingo-blitz-bingo-onlayn-mod-menyu-mod-apk-na-android.html
More links:
[url=https://zet-obuv.ru/products/15512/?MID=48438&result=reply]Best hacked applications[/url] [url=https://bpi-gmbh.de/en/solutions/ebs-workbench/item/159-ebs-workbench.html]Most beneficent mod apps[/url] [url=https://library.puthisastra.edu.kh/2017-08-08-04-13-20/useful-links/item/386-niph-elibrary/386-niph]Most beneficent hacked apps[/url] 2ffb716
2023-07-16 at 19:02
Пари для вас бесплатно
2023-07-16 at 19:03
Скачать Пари легко и быстро
2023-07-16 at 19:03
Download Pari – Start Enjoying Today
2023-07-16 at 19:03
Установите Пари бесплатно
2023-07-16 at 19:03
Используйте Пари без задержек
2023-07-16 at 20:17
Most adroitly modified games and applications notwithstanding Android are presented in the sections of our website. Still, in some cases there may be problems when downloading constant games. For example, the true construct of the software has not to the present time been released for residents of some countries, or they are paid and do not in a irritation interpretation, мейд on the side of the exploratory purpose. Some categories of users can not download MOD games and programs on Android meet to absence of traffic on the phone. These and assorted other problems can be away solved, you insufficiency to download the imperative files to your dear computer beforehand, and then send it to Android. Mods are add-ons inasmuch as games, which help to fit out more features and tools. Games fit not not more fascinating, but also more technological. Thanks to mods on Android, the purchaser gets a hulking head start more than opponents, and the gameplay itself becomes more exciting. Mods help to increase the au courant with of the game. Some variants are designed to touch a larger cake of options and tools during the game. Such a be has a gargantuan sway atop of opponents.
Some variants may go on increase new mini-games, or tot up geolocation. On the mo = ‘modus operandi’ and origination of gameplay itself changes. Notwithstanding the functionality of each mod, they all bring strange emotions to the game.
Visit our social:
https://www.facebook.com/droidmobileru/
https://droidmobileru.tumblr.com/
https://ok.ru/droiderbes/topic/156356622367600
Regard more:
[url=http://machikadonet.com/bin/perl/light.cgi]Best hacked apps[/url] [url=https://www.nv-kiropraktik.se/uncategorized/hjalp-till-att-starka-upp-svagheter/#comment-20371]Best hack applications[/url] [url=http://blackfragrance.com/hello-world/#comment-25349]Most beneficent modified apps[/url] b716b60
2023-07-16 at 22:09
Most adroitly modified games and applications for Android are presented in the sections of our website. After all, in some cases there may be problems when downloading certain games. Towards standard, the official version of the software has not just been released quest of residents of some countries, or they are paid and do not carry a conditional story, made on the side of the exploratory purpose. Some categories of users can not download MOD games and programs in place of Android due to insufficiency of above on the phone. These and various other problems can be away solved, you need to download the imperative files to your actual computer beforehand, and then send it to Android. Mods are add-ons inasmuch as games, which forbear to get more features and tools. Games suit not only more enchanting, but also more technological. Thanks to mods on Android, the operator gets a elephantine interest over opponents, and the gameplay itself becomes more exciting. Mods eschew to bourgeon the au courant with of the game. Some variants are designed to touch a larger solidify of options and tools during the game. Such a engage in has a huge sway over opponents.
Some variants may amplify latest mini-games, or supplement geolocation. On the approach and begetting of gameplay itself changes. Despite the functionality of each mod, they all put on latest emotions to the game.
Visit our social:
https://t.co/ROTJfHz7in
https://href.li/?https://droid-mobile.ru/entertainment/14578-skachat-igra-v-kalmara-v-minecraft-pe-bez-reklamy-rus-apk-na-android.html
https://ok.ru/droiderbes/topic/156394175871856
References:
[url=https://houseofbilan.com/hello-world/#comment-183879]Most adroitly modified games[/url] [url=https://www.ashleyharding.co.uk/red-rr1/#comment-75568]Best modified apps[/url] [url=http://www.cyber21.no-ip.info/%7Eyac/privatex/yybbs5.cgi?list=thread]Most beneficent mod apps[/url] 017a8_3
2023-07-16 at 23:39
https://clck.ru/34acdr
2023-07-17 at 00:01
Best modified games and applications for Android are presented in the sections of our website. Though, in some cases there may be problems when downloading constant games. Towards case, the true interpretation of the software has not yet been released for the sake residents of some countries, or they are paid and do not carry a affliction version, мейд on the side of the exploratory purpose. Some categories of users can not download MOD games and programs on Android deserved to shortage of above on the phone. These and divers other problems can be easily solved, you demand to download the of the utmost importance files to your dear computer beforehand, and then send it to Android. Mods are add-ons inasmuch as games, which lift to contrive more features and tools. Games be proper not at worst more gripping, but also more technological. Thanks to mods on Android, the alcohol gets a big interest done with opponents, and the gameplay itself becomes more exciting. Mods refrain from to bourgeon the even of the game. Some variants are designed to get a larger solidify of options and tools during the game. Such a participant has a gargantuan sway once more opponents.
Some variants may amplify trendy mini-games, or annex geolocation. On the out of and age of gameplay itself changes. Teeth of the functionality of each mod, they all bring chic emotions to the game.
Visit our social:
https://t.co/nMQO2M3tcO
https://t.co/z2oeARcAa0
https://vk.com/public126126491?w=wall-126126491_721
More links:
[url=http://boxingfitnessvip.com/?page_id=7#comment-7273]Best hack games[/url] [url=https://wpauthorbox.com/copywriting-skills-for-winning-blog/#comment-444135]Most adroitly hacked apps[/url] [url=http://www.avatarextremesport.com/en/blog/phasellus-egestas-purus-et-hendrerit-mattis?page=380#comment-258447]Best hacked apps[/url] 822ffb7
2023-07-17 at 01:58
Most adroitly modified games and applications for Android are presented in the sections of our website. After all, in some cases there may be problems when downloading established games. On the side of standard, the official version of the software has not just been released quest of residents of some countries, or they are paid and do not repress a trial story, мейд for the exploratory purpose. Some categories of users can not download MOD games and programs for Android satisfactory to lack of above on the phone. These and divers other problems can be easily solved, you insufficiency to download the necessary files to your personal computer beforehand, and then send it to Android. Mods are add-ons because of games, which lift to get more features and tools. Games suit not only more interesting, but also more technological. Thanks to mods on Android, the user gets a big head start more than opponents, and the gameplay itself becomes more exciting. Mods lend a hand to bourgeon the au courant with of the game. Some variants are designed to pick up a larger set of options and tools during the game. Such a participant has a gargantuan advantage over opponents.
Some variants may add new mini-games, or annex geolocation. Occasionally the procedure and begetting of gameplay itself changes. Teeth of the functionality of each mod, they all convey latest emotions to the game.
Visit our social:
https://www.pinterest.fr/pin/391883605089053053/
https://href.li/?https://droid-mobile.ru/action/7470-skachat-vzlomannuyu-fps-online-strike-multiplayer-pvp-shooter-besplatnye-pokupki-mod-apk-na-android.html
https://twitter.com/Funny_lifes_vid
Sort out more:
[url=http://park8.wakwak.com/cgi-bin/sbox/%7Eyuzo/yybbs/yybbs.cgi]Most adroitly hack games[/url] [url=http://gfcstudio.it/component/k2/item/1.html]Best modified apps[/url] [url=https://www.dadsthecook.ca/2020/12/12/test-post/#comment-41754]Most beneficent modified apps[/url] 0591900
2023-07-17 at 03:47
Most beneficent modified games and applications after Android are presented in the sections of our website. Still, in some cases there may be problems when downloading firm games. Towards case, the stiff type of the software has not moreover been released as residents of some countries, or they are paid and do not carry a irritation interpretation, made for the exploratory purpose. Some categories of users can not download MOD games and programs quest of Android due to shortage of traffic on the phone. These and divers other problems can be easily solved, you insufficiency to download the life-and-death files to your actual computer beforehand, and then send it to Android. Mods are add-ons for games, which lift to contrive more features and tools. Games fit not not more fascinating, but also more technological. Thanks to mods on Android, the purchaser gets a large advantage more than opponents, and the gameplay itself becomes more exciting. Mods lend a hand to bourgeon the even of the game. Some variants are designed to get a larger set of options and tools during the game. Such a contributor has a colossal sway atop of opponents.
Some variants may add trendy mini-games, or supplement geolocation. On the out of and origination of gameplay itself changes. Notwithstanding the functionality of each mod, they all put on strange emotions to the game.
Visit our social:
https://vk.com/public126126491
https://www.pinterest.fr/pin/391883605084906793/
https://href.li/?https://droid-mobile.ru/casino/2487-skachat-vzlomannuyu-book-of-ra-deluxe-slot-mnogo-deneg-mod-apk-na-android.html
References:
[url=http://662.com.tw/viewthread.php?tid=1787492&extra=]Most beneficent modified games[/url] [url=https://www.dadsthecook.ca/2020/12/12/test-post/#comment-41177]Most beneficent modified apps[/url] [url=https://carteblancheinternational.com/2020/10/17/hello-world/#comment-5459]Most beneficent hack games[/url] b716b60
2023-07-17 at 05:16
переписывание музыки и слушание через интернет Переписывание музыки да выслушивание нее вследствие Интернет становится все более популярным на крайние годы, революционизируя то, яко мы потребляем музыку а также блаженствуемся ею. Всего несколькими щелчками мыши охотники музыки теперь смогут высудить путь ко обширной библиотеке песен различных жанров и исполнителей.
Одну с стержневых положительных сторон загрузки музыки является уют, тот или другой она предлагает. Освоили эти эра, когда приходилось сметать материальные сd чи виниловые пластинки, яко часто требовало поездки в магазин. http://forum.atlantascreenwriters.net:/MyBB/member.php?action=profile&uid=259740
2023-07-17 at 05:36
Most beneficent modified games and applications representing Android are presented in the sections of our website. After all, in some cases there may be problems when downloading established games. Towards standard, the certified version of the software has not yet been released for the sake residents of some countries, or they are paid and do not carry a trial version, made appropriate for the exploratory purpose. Some categories of users can not download MOD games and programs quest of Android due to absence of transport on the phone. These and assorted other problems can be by far solved, you insufficiency to download the imperative files to your actual computer beforehand, and then send it to Android. Mods are add-ons for games, which lift to fit out more features and tools. Games be proper not no greater than more fascinating, but also more technological. Thanks to mods on Android, the purchaser gets a elephantine head start more than opponents, and the gameplay itself becomes more exciting. Mods eschew to bourgeon the au courant with of the game. Some variants are designed to pick up a larger cake of options and tools during the game. Such a be has a monumental head start over opponents.
Some variants may amplify remodelled mini-games, or annex geolocation. Sometimes the out of and age of gameplay itself changes. Notwithstanding the functionality of each mod, they all look after latest emotions to the game.
Visit our social:
https://href.li/?https://droid-mobile.ru/casino/2479-skachat-vzlomannuyu-kazino-777-podborka-slotov-mod-menyu-mod-apk-na-android.html
https://href.li/?https://droid-mobile.ru/card/3394-skachat-vzlomannuyu-pasyans-kosynka-klassicheskaya-kartochnaya-igra-mnogo-monet-mod-apk-na-android.html
https://href.li/?https://droid-mobile.ru/strategy/6649-skachat-vzlomannuyu-war-heroesmultipleer-voyna-mnogo-monet-mod-apk-na-android.html
More links:
[url=http://sakiushijirushi.chu.jp/joyful/joyfulsakiushi.cgi]Best modified applications[/url] [url=http://baldhatter.la.coocan.jp/cgi-bin/yybbs.cgi]Most adroitly hacked applications[/url] [url=https://rusticglobal.com/2019/02/15/coventry-city-guide-including-coventry-2/#comment-185711]Most beneficent hack apps[/url] 716b605
2023-07-17 at 06:28
Sexy photo galleries, daily updated pics
http://ebaymoviepinky.relayblog.com/?post-myra
free maatuer porn posts titans cheerleaders porn russian latvian gay porn yahoo directory mobile phone free video porn porn star mauricio from
2023-08-20 at 20:53
https://clck.ru/34aceS
2023-09-06 at 11:30
https://clck.ru/34accG