深入淺出 Wifi 晶片 ESP8266 with Arduino

ESP8266 是一個約六十元就買得到的超便宜的 wifi 晶片,因為他的平易近人,就像巷口的早餐店,甚至在網路上形成一個社群,隨隨便便就能找到一堆文章在介紹,只是看了一些文章以後,自己實作還是遇到一些問題,所以就寫篇文章紀錄一下吧。

也或許是我的環境是在 Mac OS X..

Continue reading…

arduino quadcopter

專案位置:https://github.com/mlwmlw/flyingCat

預計紀錄製作過程,先作為暫存區,先試過 multiwii,感測器畫面讀得到,只是沒有遙控以後就不知道要幹麼了,開啟土炮之路..。

零組件

電機:arduino uno
機架:FY450
電調(ESCs):新西達四軸 30A
馬達(Motors):高品質黑金剛 2212/15T 930KV 無刷馬達 * 4
感測器:GY80
通訊:藍牙 A09 HC-05
電池:拔拔的三顆 3.7v 鋰電池串聯
Continue reading…

驅動程式免硬體開發實踐

最近在補充驅動程式相關的知識,實際上的練習其實是有點麻煩的,因為你真的要有實際的硬體比較方便你練習實作,而我又是用手驅動腦學習的實踐者…,所以就思考到要怎麼作這件事。

現在其實 CPU 與硬體週邊都有 qemu + kvm 這套很不錯的模擬器可以用來練習安裝與開發核心了,但是裡面都是一堆已經改好的驅動,還是不知道該怎麼下手。

以我目前的理解裡面最簡單又實際的驅動應該是 GPIO 的開發~,所以想到如果可以有一個工具可以在 qemu 裡面模擬 GPIO 裝置,然後可以用一個 app 來觸發這個裝置的中斷或值的改變,這樣應該不失為一個很完整的練習環境吧…!

而且如果能自己設計調整外部裝置的一些訊號狀態,應該更能增進開發者軟硬整合之間的知識~

 

 

Android Emulator market 大戰

這幾天裝了Android 2.2 的模擬器,想要裝個 market 來玩玩,結果挫敗連連…

ADB:可以連接模擬器的工具在android sdk tools 裡面,可以進 shell 還有一些額外的指令工具。

紀錄一下步驟…

  • 裝好 SDK 建立一個 AVD
  • 搬出有中文名稱的使用者的資料夾…修改對應的 avd.ini 改成搬出去的其他位置
  • modaco 網站 下載 G1 2.2 映像檔,裡面有實際執行環境的一些映像檔 跟 rootfs ,好像有很多版本會更新
  • 透過 adb remount 後才可以 push ~
  • 從映像檔裡面拿出並安裝 Market 到模擬器上
    • adb push source target
    • GoogleServicesFramework.apk (Google服務 )
    • Vending.apk (Market)
    • 設定 build.prop 不允許 checkin 註解掉 ( pull 再 push )
    • 重開會不見…不知道為啥
  • 失敗,不能登入
    • adb logcat 看到 => com.android.vending.api.FatalCommunicationException: Sent a bad request
    • 這位大大 有很詳細跟類似的錯誤與解決 有點太複雜…
  • 改用 adb install Vending.apk 跟 GoogleServicesFramework.apk
  • 重開不會不見
  • 成功登入
  • 失敗
  • 不能下載…
  • 絕望…
  • 發現我好像連 reboot 都有問題

模擬器與adb指令 http://xxlinxx.wordpress.com/

中文 http://blog.23corner.com/2010/06/17/%E5%9C%A8-android-emulator-%E4%B8%AD%E4%BD%BF%E7%94%A8-android-market-%E7%9A%84%E6%96%B9%E6%B3%95/

英文 http://www.howtogeek.com/howto/21862/how-to-enable-the-android-market-in-the-google-android-emulator/

g1 2.2 映像檔 http://android.modaco.com/content/google-nexus-one-nexusone-modaco-com/317849/22-oct-r24-modaco-custom-rom-desire-port-for-nexus-one-with-online-kitchen-2-2-froyo/

今日延燒至Linux Mint 中成功了…,因為被 Ubuntu 10.10 的 Eclipse 氣死了,原本主要的問題好像都是 push 完以後重開就都沒了,只是這次完全照著作就沒事了…嘆…

參考這篇回應的 http://anythingsimple.blogspot.com/2010/09/how-to-use-android-market-on-android.html

Linux Users

1. Create your avd using either terminal or gui. #建立一個 2.2 的 avd
A. Terminal – cd to the location of your SDK tools folder and run
./android create avd -n android-2.2 -t 7

B. Gui – run ./android from you SDK tools folder and make a new 2.2 virtual device
named android-2.2

*Note – Replace the 7 in the terminal with whatever 2.2 is for you. You can find out by running
./android list target

2. Copy the system.img from your sdk using the terminal or manually #複製 system.img 到你的 avd 資料夾下 ,不知道目的是啥,因為 system.img 好像設完後沒改變大小

Terminal – cp /home/USER/location of sdk/platforms/android-8/images/system.img ~/.android/avd/android-2.2.avd

3. Start the emulator using either the terminal or gui #開啟模擬器用指令的方式 才能設 partition-size 等下要 remount 用的

A. For terminal (Make sure your in your SDK tools folder) – ./emulator -avd android-2.2 -partition-size 96

4. After the emulator has fully started we need to pull build.prop (Open a terminal if needed and go to the tools folder) #把 build.prop 拉出來

A. Terminal – ./adb pull /system/build.prop

*Note – Open a new terminal or a new tab and cd back to the tools folder of the sdk.

5. Comment out ro.config.nochecking=yes from the file by putting a # in front of the line. # 把不允許登入 google 拿掉

A. Terminal – gedit build.prop

B. Save changes and exit

6. Push back the update build.prop # remount 後推回去

Terminal – ./adb remount

./adb push build.prop /system/build.prop

7. Get the custom rom linked above. Extract it to your desktop and rename the folder
to r21

8. Run the following commands in the terminal # 把 goole service 跟 market apk push 上去

./adb push ~/Desktop/r21/system/app/GoogleServicesFramework.apk /system/app

./adb push ~/Desktop/r21/system/app/Vending.apk /system/app

9. Remove the SdkSetup file #移除SdkSetup ? 有啥用

./adb shell rm /system/app/SdkSetup.apk

10. Finally stop the emulator and run these commands in terminal #砍掉幾個記憶檔

cd ~/.android/avd/android-2.2.avd

rm -R userdata-qemu.img userdata.img cache.img

11. Start up the emulator and you should now have the market! #重開吧 !去抓遊戲來玩…